Changeset 417136
- Timestamp:
- 07/30/2011 10:26:04 AM (15 years ago)
- Location:
- traffic-counter-widget/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-traffic-counter-widget.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
traffic-counter-widget/trunk/readme.txt
r417127 r417136 1 1 === Plugin Name === 2 2 Plugin Name: Traffic Counter Widget Plugin 3 Version: 1.0. 13 Version: 1.0.2 4 4 Donate link: http://www.pixme.org/wp-content/uploads/widget-traffic-counter/ 5 5 URI: http://www.pixme.org/wp-content/uploads/widget-traffic-counter/ 6 6 Tags: traffic counter, user traffic, traffic widget, visitors counter 7 7 Requires at least: 2.8.0 8 Tested up to: 3.2 8 Tested up to: 3.2.1 9 9 Stable tag: trunk 10 10 PHP Version: 5.2.9 … … 45 45 == Changelog == 46 46 47 = 1.0.2 48 * Monthly visitors bug fix 49 47 50 = 1.0.1 48 51 * Integer number format on widget according to blog settings -
traffic-counter-widget/trunk/wp-traffic-counter-widget.php
r417126 r417136 5 5 Description: Counts the number of visitors of your blog and shows the traffic information on a widget 6 6 Author: Bogdan Nicolaescu 7 Version: 1.0. 17 Version: 1.0.2 8 8 Author URI: http://www.pixme.org/ 9 9 */ … … 108 108 <li><?php echo $options["wp_wtc_WidgetText_LastDay"].": ".number_format_i18n(get_traffic(86400,false)); ?> </li> 109 109 <li><?php echo $options["wp_wtc_WidgetText_LastWeek"].": ".number_format_i18n(get_traffic(604800,false)); ?> </li> 110 <li><?php echo $options["wp_wtc_WidgetText_LastMonth"].": ".number_format_i18n(get_traffic( 18144000,false)); ?> </li>110 <li><?php echo $options["wp_wtc_WidgetText_LastMonth"].": ".number_format_i18n(get_traffic(2592000,false)); ?> </li> 111 111 <li><?php echo $options["wp_wtc_WidgetText_Online"].": ".number_format_i18n(get_traffic(600, true)); ?> </li> 112 112 </ul>
Note: See TracChangeset
for help on using the changeset viewer.