Plugin Directory

Changeset 716328


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

Added removal of tables and options with delete plugin

Location:
lazy-pinner
Files:
1 added
3 edited
8 copied

Legend:

Unmodified
Added
Removed
  • lazy-pinner/tags/2.1.1/includes/admin.php

    r714191 r716328  
    225225        draw_form();
    226226    }else{
    227         $wpdb->show_errors();
    228227        $table = $wpdb->prefix . 'lazy_pinner_user';
    229228        $sql = $wpdb->query("UPDATE $table set email = '$lzemailvar', password = '$lzpassvar', passkey = '$lzpasskeyvar', board = '$lzboardvar', board_user = '$lzboarduservar', board_id = $lzboardidvar");
  • lazy-pinner/tags/2.1.1/lazypinner.php

    r715246 r716328  
    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
     6Version: 2.1.1
    77Author: Lee Thompson and Nick Westerlund
    88Author URI: http://www.biofects.com
     
    4646             
    4747    $sql2 = "CREATE TABLE " . $table2 ." (
    48             pinner_date TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
     48            pinner_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
    4949            pinner_postid int(11) NOT NULL,
    5050            pinner_comment varchar(255) NOT NULL DEFAULT ''
  • lazy-pinner/tags/2.1.1/readme.txt

    r715246 r716328  
    55Requires at least: 3.0
    66Tested up to: 3.5.1
    7 Stable tag: 2.1
     7Stable tag: 2.1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5757= 2.1 =
    5858I have made the pinner find the first image attached if no featured image is set, this removes the need to posts to have featured image.
     59
     60= 2.1.1 =
     61Added uninstall function to remove tables and options this plugin creates
  • lazy-pinner/trunk/includes/admin.php

    r714191 r716328  
    225225        draw_form();
    226226    }else{
    227         $wpdb->show_errors();
    228227        $table = $wpdb->prefix . 'lazy_pinner_user';
    229228        $sql = $wpdb->query("UPDATE $table set email = '$lzemailvar', password = '$lzpassvar', passkey = '$lzpasskeyvar', board = '$lzboardvar', board_user = '$lzboarduservar', board_id = $lzboardidvar");
  • lazy-pinner/trunk/lazypinner.php

    r715246 r716328  
    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
     6Version: 2.1.1
    77Author: Lee Thompson and Nick Westerlund
    88Author URI: http://www.biofects.com
     
    4646             
    4747    $sql2 = "CREATE TABLE " . $table2 ." (
    48             pinner_date TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
     48            pinner_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
    4949            pinner_postid int(11) NOT NULL,
    5050            pinner_comment varchar(255) NOT NULL DEFAULT ''
  • lazy-pinner/trunk/readme.txt

    r715246 r716328  
    55Requires at least: 3.0
    66Tested up to: 3.5.1
    7 Stable tag: 2.1
     7Stable tag: 2.1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5757= 2.1 =
    5858I have made the pinner find the first image attached if no featured image is set, this removes the need to posts to have featured image.
     59
     60= 2.1.1 =
     61Added uninstall function to remove tables and options this plugin creates
Note: See TracChangeset for help on using the changeset viewer.