Changeset 581502
- Timestamp:
- 08/03/2012 08:59:14 PM (14 years ago)
- Location:
- quick-count/trunk
- Files:
-
- 2 edited
-
quick-count.php (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
quick-count/trunk/quick-count.php
r581498 r581502 5 5 Description: Ajax WordPress plugin that informs you and your users about how many people is currently browsing your site. 6 6 Author: Marko Martinović 7 Version: 2.0 07 Version: 2.01 8 8 Author URI: http://www.techytalk.info 9 9 License: GPL2 … … 26 26 27 27 class Quick_Count{ 28 const version = '2.0 0';28 const version = '2.01'; 29 29 const jqvmap_version = '1.0'; 30 30 const link = 'http://www.techytalk.info/wordpress-plugins/quick-count/'; … … 93 93 register_activation_hook(__FILE__, array($this, 'clear_cache')); 94 94 register_deactivation_hook(__FILE__, array($this, 'clear_cache')); 95 }96 97 public function __call($method, $args){98 if($method == 'quick_count'){99 return call_user_func_array(array($this, 'main'), $args);100 }101 95 } 102 96 … … 574 568 extract(shortcode_atts(array('online_count' => 1, 'count_each' => 1, 'most_count' => 1, 'user_list' => 0, 'by_country' => 1, 'visitors_map' => 1), $atts )); 575 569 576 $content = $this-> quick_count($online_count, $count_each, $most_count, $user_list, $by_country, $visitors_map, 'quick-count-shortcode');570 $content = $this->show($online_count, $count_each, $most_count, $user_list, $by_country, $visitors_map, 'quick-count-shortcode'); 577 571 578 572 return $content; -
quick-count/trunk/readme.txt
r581498 r581502 107 107 108 108 == Changelog == 109 = 2.01 (03.08.2012.) = 110 * Fix shortcode not working after upgrade 111 109 112 = 2.00 (03.08.2012.) = 110 113 * Add PHP caching WordPress plugins compatibility (see FAQ for more)
Note: See TracChangeset
for help on using the changeset viewer.