Plugin Directory

Changeset 663026


Ignore:
Timestamp:
02/04/2013 05:33:21 AM (13 years ago)
Author:
segmentio
Message:

0.3.3

Location:
segmentio/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • segmentio/trunk/analytics-wordpress.php

    r662342 r663026  
    55Description: The hassle-free way to integrate any analytics service into your Wordpress site.
    66
    7 Version: 0.3.2
     7Version: 0.3.3
    88License: GPLv2
    99
     
    5353
    5454    const SLUG    = 'analytics';
    55     const VERSION = '0.3.2';
     55    const VERSION = '0.3.3';
    5656
    5757    private $option   = 'analytics_wordpress_options';
     
    293293    // Removes any empty keys in an array.
    294294    private function clean_array($array) {
     295        // In case they pass in some weird stuff.
     296        if (!is_array($array)) return $array;
     297
    295298        foreach ($array as $key => $value) {
    296299            if ($array[$key] == '') unset($array[$key]);
  • segmentio/trunk/readme.txt

    r662342 r663026  
    44Requires at least: 3.4
    55Tested up to: 3.5
    6 Stable tag: 0.3.2
     6Stable tag: 0.3.3
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4747== Changelog ==
    4848
     49= 0.3.3 =
     50* Fixed a bug that occured on uncommon page types.
     51
    4952= 0.3.2 =
    50 * Fixed bug that occured when installing from WordPress Plugin Repository.
     53* Fixed a bug that occured when installing straight from WordPress admin.
    5154
    5255= 0.3.0 =
Note: See TracChangeset for help on using the changeset viewer.