Plugin Directory

Changeset 581502


Ignore:
Timestamp:
08/03/2012 08:59:14 PM (14 years ago)
Author:
Marko-M
Message:

Quick Count 2.01 fix shortcode not working after upgrade to 2.00

Location:
quick-count/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • quick-count/trunk/quick-count.php

    r581498 r581502  
    55Description: Ajax WordPress plugin that informs you and your users about how many people is currently browsing your site.
    66Author: Marko Martinović
    7 Version: 2.00
     7Version: 2.01
    88Author URI: http://www.techytalk.info
    99License: GPL2
     
    2626
    2727class Quick_Count{
    28     const version = '2.00';
     28    const version = '2.01';
    2929    const jqvmap_version = '1.0';
    3030    const link = 'http://www.techytalk.info/wordpress-plugins/quick-count/';
     
    9393        register_activation_hook(__FILE__, array($this, 'clear_cache'));
    9494        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         }
    10195    }
    10296
     
    574568        extract(shortcode_atts(array('online_count' => 1, 'count_each' => 1, 'most_count' => 1, 'user_list' => 0,  'by_country' => 1, 'visitors_map' => 1), $atts ));
    575569
    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');
    577571
    578572        return $content;
  • quick-count/trunk/readme.txt

    r581498 r581502  
    107107
    108108== Changelog ==
     109= 2.01 (03.08.2012.) =
     110*   Fix shortcode not working after upgrade
     111
    109112= 2.00 (03.08.2012.) =
    110113*   Add PHP caching WordPress plugins compatibility (see FAQ for more)
Note: See TracChangeset for help on using the changeset viewer.