Changeset 1030076
- Timestamp:
- 11/21/2014 11:33:08 AM (11 years ago)
- Location:
- mini-statistics/trunk
- Files:
-
- 2 edited
-
mini-statistics.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mini-statistics/trunk/mini-statistics.php
r1029232 r1030076 4 4 Plugin URI: https://wordpress.org/plugins/mini-statistics/ 5 5 Description: This plugin is a small and simple Users Statistics and Comments Statistics plugin for WordPress. 6 Version: 1.0. 16 Version: 1.0.2 7 7 Author: Ayan Debnath 8 8 Author URI: http://about.me/ayandebnath … … 121 121 122 122 $start_date = intval($wpdb->get_var( 123 $wpdb->prepare( 124 " 125 SELECT year(comment_date) FROM $wpdb->comments 126 WHERE comment_approved = 1 127 ORDER BY comment_date 128 LIMIT 1 129 " 130 , null) 123 " 124 SELECT year(comment_date) FROM $wpdb->comments 125 WHERE comment_approved = 1 126 ORDER BY comment_date 127 LIMIT 1 128 " 131 129 )); 132 130 … … 229 227 230 228 $start_date = intval($wpdb->get_var( 231 $wpdb->prepare( 232 " 233 SELECT year(user_registered) FROM $wpdb->users 234 ORDER BY user_registered 235 LIMIT 1 236 " 237 , null) 229 " 230 SELECT year(user_registered) FROM $wpdb->users 231 ORDER BY user_registered 232 LIMIT 1 233 " 238 234 )); 239 235 -
mini-statistics/trunk/readme.txt
r1029232 r1030076 32 32 == Changelog == 33 33 34 = 1.0.2 = 35 * Small PHP-Notice error fixing. Special thanks to Ayan Debnath. 36 34 37 = 1.0.1 = 35 38 * Small bug fixing. Special thanks to Kishore Chowdhury.
Note: See TracChangeset
for help on using the changeset viewer.