Changeset 7143

Show
Ignore:
Timestamp:
12/25/06 06:59:52 (2 years ago)
Author:
GamerZ
Message:

Remove htmlspecialchars From display_name

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • wp-stats/trunk/readme.html

    r6777 r7143  
    211211                  <p><b>Development:</b><br /><b>&raquo;</b> <a href="http://dev.wp-plugins.org/browser/wp-stats/" title="http://dev.wp-plugins.org/browser/wp-stats/">http://dev.wp-plugins.org/browser/wp-stats/</a></p> 
    212212                  <p><b>Support Forums:</b><br /><b>&raquo;</b> <a href="http://forums.lesterchan.net/viewforum.php?f=6" title="http://forums.lesterchan.net/viewforum.php?f=6">http://forums.lesterchan.net/viewforum.php?f=6</a></p> 
    213                   <p><b>Updated:</b><br /><b>&raquo;</b> 1st October 2006</p> 
     213                  <p><b>Updated:</b><br /><b>&raquo;</b> 2nd January 2007</p> 
    214214                  <p><b>Note:</b><br /><b>&raquo;</b> I have localize WP-Stats, if there is any bug or some text is not translated properly, please contact me immediately.</p> 
    215215                  <div class="SubSubTitle">Changelog</div> 
    216216                  <ul> 
    217217                        <li> 
    218                               <b>Version 2.06 (11-12-2006)</b> 
     218                              <b>Version 2.06 (02-01-2007)</b> 
    219219                              <ul> 
    220220                                    <li>NEW: Localize WP-Stats</li> 
  • wp-stats/trunk/stats/stats.php

    r6777 r7143  
    140140                  $post_title = htmlspecialchars(stripslashes($post->post_title)); 
    141141                  $post_date = mysql2date('d.m.Y', $post->post_date); 
    142                   $display_name = htmlspecialchars(stripslashes($post->display_name)); 
     142                  $display_name = stripslashes($post->display_name); 
    143143                  $temp .= "<li>$post_date - <a href=\"".get_permalink()."\">$post_title</a> ($display_name)</li>\n"; 
    144144            }