Plugin Directory

Changeset 213209


Ignore:
Timestamp:
03/04/2010 10:16:34 PM (16 years ago)
Author:
jimisaacs
Message:

Updated to version 0.9.2.2 - fixed a couple minor bugs

Location:
extensible-widgets/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • extensible-widgets/trunk/includes/wpew.php

    r210736 r213209  
    4343     * @see xf_wp_APlugin::$version
    4444     */
    45     public $version = '0.9.2.1';
     45    public $version = '0.9.2.2';
    4646   
    4747    /**
  • extensible-widgets/trunk/includes/xf/wp/AAdminMenu.php

    r210736 r213209  
    9898        reset($this->_children);
    9999        if( !$this->hasDefaultChild ) {
    100             $this->defaultChild = current($this->_children);
     100            $first =& current($this->_children);
     101            $this->defaultChild = $first;
    101102        }
    102103        do {
  • extensible-widgets/trunk/js/admin.js

    r209246 r213209  
    4242                $(this.update).hide().animate({opacity:'show'},'normal').wpewAdmin();
    4343            },
    44             dataType: 'html',
     44            dataType: 'html'
    4545        };
    4646        $(this).find('form.ajaxify, a.ajaxify').ajaxify(ajaxOpts);
  • extensible-widgets/trunk/plugin.php

    r210736 r213209  
    55Description: In addition to adding numerous extremely useful widgets for developers and users alike, this plugin is a system written on a PHP 5 object oriented structure. In short, it is built for modification and extension. It wraps the WordPress Widget API to allow for an alternative, and in my opinion more robust method to hook into and use it. Widgets are WordPress's version of user interface modules. They already support an administrative and client-side view. This system simply leverages that with a higher potential in mind.
    66Author: Jim Isaacs
    7 Version: 0.9.2.1
     7Version: 0.9.2.2
    88Author URI: http://jidd.jimisaacs.com/
    99*/
  • extensible-widgets/trunk/readme.txt

    r210736 r213209  
    6868
    6969== Changelog ==
     70
     71= 0.9.2.2 =
     72* Fixed a reference warning with admin controllers
     73* Fixed minor Javascript error failing in older browsers
    7074
    7175= 0.9.2.1 =
Note: See TracChangeset for help on using the changeset viewer.