Plugin Directory

Changeset 571522


Ignore:
Timestamp:
07/13/2012 01:05:38 AM (14 years ago)
Author:
alyssonweb
Message:

Version 1.0.4

Location:
dynamics-sidebars/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • dynamics-sidebars/trunk/dynamics-sidebars.php

    r571510 r571522  
    77 * Author Name: Alysson Bortoli
    88 * Author URI: http://twitter.com/akbortoli
    9  * Version: 1.0.3
     9 * Version: 1.0.4
    1010 * License: GPLv2 or later
    1111 */
  • dynamics-sidebars/trunk/includes/class-dynamic-sidebars.php

    r571510 r571522  
    6969            add_post_type_support( 'page', 'custom-sidebar' );
    7070
     71        // Hook up actions
     72        add_action( 'init', array( &$this, 'register_sidebars' ), 11 );
     73
    7174        if ( is_admin() ) {
    72             // Hook up actions
    7375            add_action( 'init', array( &$this, 'register_column' ), 100 );
    74             add_action( 'init', array( &$this, 'register_sidebars' ), 11 );
    7576            add_action( 'add_meta_boxes', array( &$this, 'add_metabox' ), 12 );
    7677            add_action( 'admin_enqueue_scripts', array( &$this, 'enqueue_script_style' ) );
     
    7980            add_action( 'wp_ajax_ds_save_post', array( &$this, 'save_ajax' ) );
    8081            add_action( 'wp_ajax_ds_update_select', array( &$this, 'update_select' ) );
    81             add_action( 'save_post', array( &$this, 'save' ) );
    82         }
     82        }
     83
     84        add_action( 'save_post', array( &$this, 'save' ) );
    8385
    8486        // hook
  • dynamics-sidebars/trunk/readme.txt

    r571512 r571522  
    55Requires at least: 3.0
    66Tested up to: 3.4.1
    7 Stable tag: 1.0.3
     7Stable tag: 1.0.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    137137
    138138== Changelog ==
     139
     140= 1.0.4 =
     141
     142* Fixed issue where sidebar is not registered.
    139143
    140144= 1.0.3 =
     
    202206== Upgrade Notice ==
    203207
    204 Changed to Filter 'ds_save_ajax_message'
     208Fixed issue where sidebar is not registered
    205209
    206210== Internationalization (i18n) ==
Note: See TracChangeset for help on using the changeset viewer.