Changeset 7971
- Timestamp:
- 02/14/07 15:54:32 (17 months ago)
- Location:
- wp-stats/trunk
- Files:
-
- 5 modified
-
readme.html (modified) (8 diffs)
-
stats/stats-options.php (modified) (1 diff)
-
stats/stats-widget.php (modified) (1 diff)
-
stats/stats.php (modified) (2 diffs)
-
stats/wp-stats.pot (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-stats/trunk/readme.html
r7475 r7971 3 3 <head> 4 4 <meta http-equiv="content-type" content="text/html; charset=utf-8" /> 5 <title>WP-Stats 2.1 0Readme</title>5 <title>WP-Stats 2.11 Readme</title> 6 6 <style type="text/css" media="screen"> 7 7 /* Default Style */ … … 204 204 <div id="Container"> 205 205 <!-- Title --> 206 <div id="Title">WP-Stats 2.1 0 <span style="color: #aaaaaa;">Readme</span></div>206 <div id="Title">WP-Stats 2.11 <span style="color: #aaaaaa;">Readme</span></div> 207 207 208 208 <!-- Tabs --> … … 230 230 <script type="text/javascript"> 231 231 /* <![CDATA[*/ 232 document.write(' <a href="mailto:gamerz84@hotmail.com?Subject=WP-Stats%202.1 0%20Support" title="EMail To gamerz84@hotmail.com">gamerz84@hotmail.com</a>');232 document.write(' <a href="mailto:gamerz84@hotmail.com?Subject=WP-Stats%202.11%20Support" title="EMail To gamerz84@hotmail.com">gamerz84@hotmail.com</a>'); 233 233 /* ]]> */ 234 234 </script> … … 243 243 <p> 244 244 <b>Download:</b><br /> 245 <b>»</b> <a href="http://www.lesterchan.net/others/downloads.php?id=8" title="http://www.lesterchan.net/others/downloads.php?id=8">WP-Stats 2.1 0For WordPress 2.1.x</a><br />245 <b>»</b> <a href="http://www.lesterchan.net/others/downloads.php?id=8" title="http://www.lesterchan.net/others/downloads.php?id=8">WP-Stats 2.11 For WordPress 2.1.x</a><br /> 246 246 <b>»</b> <a href="http://www.lesterchan.net/others/downloads/wp-stats206.zip" title="http://www.lesterchan.net/others/downloads/wp-stats206.zip">WP-Stats 2.06 For WordPress 2.0.x</a><br /> 247 247 <b>»</b> <a href="http://www.lesterchan.net/others/downloads/wp-stats.zip" title="http://www.lesterchan.net/others/downloads/wp-stats.zip">WP-Stats 1.00 For WordPress 1.5.2 </a> … … 264 264 <p> 265 265 <b>Updated:</b><br /> 266 <b>»</b> 1st February 2007266 <b>»</b> 1st May 2007 267 267 </p> 268 268 <p> … … 286 286 <ul> 287 287 <li> 288 <b>Version 2.11 (01-05-2007)</b> 289 <ul> 290 <li>FIXED: Password Protected Post Comments Viewable On Comment Author Stats</li> 291 </ul> 292 </li> 293 <li> 288 294 <b>Version 2.10 (01-02-2007)</b> 289 295 <ul> … … 376 382 <div id="Upgrade" style="display: none;"> 377 383 <div class="SubTitle">» Upgrade Instructions</div> 378 <div class="SubSubTitle">From v1.0x To v2.1 0</div>384 <div class="SubSubTitle">From v1.0x To v2.11</div> 379 385 <ol> 380 386 <li> … … 447 453 </div> 448 454 </div> 449 <p id="Copyright">WP-Stats 2.1 0<br />Copyright © 2007 Lester 'GaMerZ' Chan. All Rights Reserved.</p>455 <p id="Copyright">WP-Stats 2.11<br />Copyright © 2007 Lester 'GaMerZ' Chan. All Rights Reserved.</p> 450 456 </body> 451 457 </html> -
wp-stats/trunk/stats/stats-options.php
r7637 r7971 3 3 +----------------------------------------------------------------+ 4 4 | | 5 | WordPress 2.1 Plugin: WP-Stats 2.1 0|5 | WordPress 2.1 Plugin: WP-Stats 2.1 1 | 6 6 | Copyright (c) 2007 Lester "GaMerZ" Chan | 7 7 | | -
wp-stats/trunk/stats/stats-widget.php
r7637 r7971 4 4 Plugin URI: http://www.lesterchan.net/portfolio/programming.php 5 5 Description: Adds a Sidebar Widget To Display Partial Stats From WP-Stats Plugin 6 Version: 2.1 06 Version: 2.11 7 7 Author: GaMerZ 8 8 Author URI: http://www.lesterchan.net -
wp-stats/trunk/stats/stats.php
r7716 r7971 4 4 Plugin URI: http://www.lesterchan.net/portfolio/programming.php 5 5 Description: Display your WordPress blog statistics. Ranging from general total statistics, some of my plugins statistics and top 10 statistics. 6 Version: 2.1 06 Version: 2.11 7 7 Author: GaMerZ 8 8 Author URI: http://www.lesterchan.net … … 567 567 $totalpages = ceil($totalcomments/$perpage); 568 568 // Getting The Comments 569 $gmz_comments = $wpdb->get_results("SELECT $wpdb->posts.ID, comment_author, comment_date, comment_content, ID, comment_ID, post_date, post_title, post_name, post_password FROM $wpdb->comments INNER JOIN $wpdb->posts ON $wpdb->comments.comment_post_ID = $wpdb->posts.ID WHERE comment_author = '$comment_author_sql' AND comment_approved = '1' AND post_date < '".current_time('mysql')."' AND post_status = 'publish' ORDER BY comment_post_ID DESC, comment_date DESC LIMIT $offset, $perpage");569 $gmz_comments = $wpdb->get_results("SELECT $wpdb->posts.ID, comment_author, comment_date, comment_content, ID, comment_ID, post_date, post_title, post_name, post_password FROM $wpdb->comments INNER JOIN $wpdb->posts ON $wpdb->comments.comment_post_ID = $wpdb->posts.ID WHERE comment_author = '$comment_author_sql' AND comment_approved = '1' AND post_date < '".current_time('mysql')."' AND post_status = 'publish' AND post_password = '' ORDER BY comment_post_ID DESC, comment_date DESC LIMIT $offset, $perpage"); 570 570 571 571 $temp_stats .= '<h2>'.__('Comments Posted By', 'wp-stats').' '.$comment_author.'</h2>'; -
wp-stats/trunk/stats/wp-stats.pot
r7637 r7971 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: WP-Stats 2.1 0\n"3 "Project-Id-Version: WP-Stats 2.11\n" 4 4 "POT-Creation-Date: \n" 5 "PO-Revision-Date: 2007-0 1-27 15:08+0800\n"5 "PO-Revision-Date: 2007-02-14 23:53+0800\n" 6 6 "Last-Translator: Lester 'GaMerZ' Chan <gamerz84@hotmail.com>\n" 7 7 "Language-Team: Lester Chan <gamerz84@homtail.com>\n"
