Plugin Directory

Changeset 716339


Ignore:
Timestamp:
05/22/2013 02:20:38 AM (13 years ago)
Author:
leethompson
Message:

fixed coding issue with removal

Location:
lazy-pinner
Files:
1 added
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • lazy-pinner/tags/2.1.3/lazypinner.php

    r716338 r716339  
    44Plugin URI: http://www.biofects.com
    55Description: This plugin automatically post your image and title to pineterst on Publish or Save
    6 Version: 2.1.2
     6Version: 2.1.3
    77Author: Lee Thompson and Nick Westerlund
    88Author URI: http://www.biofects.com
     
    8383  $sql1 = "DROP TABLE IF EXISTS $table1";
    8484  $sql2 = "DROP TABLE IF EXISTS $table2";
    85     dbDelta($sql1);
    86     dbDelta($sql2);
     85  $wpdb->query($sql1);
     86  $wpdb->query(($sql2);
    8787}
    8888    register_uninstall_hook( __FILE__, 'LazyPinnerUninstall' );
  • lazy-pinner/tags/2.1.3/readme.txt

    r716338 r716339  
    55Requires at least: 3.0
    66Tested up to: 3.5.1
    7 Stable tag: 2.1.2
     7Stable tag: 2.1.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6363= 2.1.2 =
    6464Added the new file I forgot
     65
     66= 2.1.3 =
     67Fixed plugin delete
  • lazy-pinner/trunk/lazypinner.php

    r716338 r716339  
    44Plugin URI: http://www.biofects.com
    55Description: This plugin automatically post your image and title to pineterst on Publish or Save
    6 Version: 2.1.2
     6Version: 2.1.3
    77Author: Lee Thompson and Nick Westerlund
    88Author URI: http://www.biofects.com
     
    8383  $sql1 = "DROP TABLE IF EXISTS $table1";
    8484  $sql2 = "DROP TABLE IF EXISTS $table2";
    85     dbDelta($sql1);
    86     dbDelta($sql2);
     85  $wpdb->query($sql1);
     86  $wpdb->query(($sql2);
    8787}
    8888    register_uninstall_hook( __FILE__, 'LazyPinnerUninstall' );
  • lazy-pinner/trunk/readme.txt

    r716338 r716339  
    55Requires at least: 3.0
    66Tested up to: 3.5.1
    7 Stable tag: 2.1.2
     7Stable tag: 2.1.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6363= 2.1.2 =
    6464Added the new file I forgot
     65
     66= 2.1.3 =
     67Fixed plugin delete
Note: See TracChangeset for help on using the changeset viewer.