Plugin Directory

Changeset 587056


Ignore:
Timestamp:
08/18/2012 04:44:00 AM (14 years ago)
Author:
alyssonweb
Message:

Uninstall fix, tagging version 1.0.5

Location:
dynamics-sidebars
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • dynamics-sidebars/tags/1.0.5/dynamics-sidebars.php

    r571522 r587056  
    77 * Author Name: Alysson Bortoli
    88 * Author URI: http://twitter.com/akbortoli
    9  * Version: 1.0.4
     9 * Version: 1.0.5
    1010 * License: GPLv2 or later
    1111 */
  • dynamics-sidebars/tags/1.0.5/readme.txt

    r571522 r587056  
    55Requires at least: 3.0
    66Tested up to: 3.4.1
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    137137
    138138== Changelog ==
     139
     140= 1.0.5 =
     141
     142* Fixed issue when trying to uninstall the plugin.
    139143
    140144= 1.0.4 =
     
    206210== Upgrade Notice ==
    207211
    208 Fixed issue where sidebar is not registered
     212Fixed bug where users could not uninstall the plugin.
    209213
    210214== Internationalization (i18n) ==
  • dynamics-sidebars/tags/1.0.5/uninstall.php

    r571073 r587056  
    55    wp_die();
    66
     7global $wpdb;
     8
    79$query = $wpdb->prepare( "DELETE FROM $wpdb->postmeta WHERE meta_key = %s", 'dynamic_sidebar' );
    810$wpdb->query( $query );
  • dynamics-sidebars/trunk/dynamics-sidebars.php

    r571522 r587056  
    77 * Author Name: Alysson Bortoli
    88 * Author URI: http://twitter.com/akbortoli
    9  * Version: 1.0.4
     9 * Version: 1.0.5
    1010 * License: GPLv2 or later
    1111 */
  • dynamics-sidebars/trunk/readme.txt

    r571522 r587056  
    55Requires at least: 3.0
    66Tested up to: 3.4.1
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    137137
    138138== Changelog ==
     139
     140= 1.0.5 =
     141
     142* Fixed issue when trying to uninstall the plugin.
    139143
    140144= 1.0.4 =
     
    206210== Upgrade Notice ==
    207211
    208 Fixed issue where sidebar is not registered
     212Fixed bug where users could not uninstall the plugin.
    209213
    210214== Internationalization (i18n) ==
  • dynamics-sidebars/trunk/uninstall.php

    r571073 r587056  
    55    wp_die();
    66
     7global $wpdb;
     8
    79$query = $wpdb->prepare( "DELETE FROM $wpdb->postmeta WHERE meta_key = %s", 'dynamic_sidebar' );
    810$wpdb->query( $query );
Note: See TracChangeset for help on using the changeset viewer.