Changeset 716338
- Timestamp:
- 05/22/2013 02:14:39 AM (13 years ago)
- Location:
- lazy-pinner
- Files:
-
- 1 added
- 2 edited
- 4 copied
-
tags/2.1.2 (added)
-
tags/2.1.2/images (copied) (copied from lazy-pinner/trunk/images)
-
tags/2.1.2/includes (copied) (copied from lazy-pinner/trunk/includes)
-
tags/2.1.2/lazypinner.php (copied) (copied from lazy-pinner/trunk/lazypinner.php) (3 diffs)
-
tags/2.1.2/readme.txt (copied) (copied from lazy-pinner/trunk/readme.txt) (2 diffs)
-
trunk/lazypinner.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lazy-pinner/tags/2.1.2/lazypinner.php
r716329 r716338 4 4 Plugin URI: http://www.biofects.com 5 5 Description: This plugin automatically post your image and title to pineterst on Publish or Save 6 Version: 2.1. 16 Version: 2.1.2 7 7 Author: Lee Thompson and Nick Westerlund 8 8 Author URI: http://www.biofects.com … … 46 46 47 47 $sql2 = "CREATE TABLE " . $table2 ." ( 48 pinner_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMPON UPDATE CURRENT_TIMESTAMP,48 pinner_date TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, 49 49 pinner_postid int(11) NOT NULL, 50 50 pinner_comment varchar(255) NOT NULL DEFAULT '' … … 76 76 } 77 77 78 function LazyPinnerUninstall() { 79 global $wpdb; 80 $table1 = $wpdb->prefix."lazy_pinner_user"; 81 $table2 = $wpdb->prefix."lazy_pinner_logs"; 82 delete_option('lazypinner_version'); 83 $sql1 = "DROP TABLE IF EXISTS $table1"; 84 $sql2 = "DROP TABLE IF EXISTS $table2"; 85 dbDelta($sql1); 86 dbDelta($sql2); 87 } 88 register_uninstall_hook( __FILE__, 'LazyPinnerUninstall' ); 78 89 79 90 include('includes/pinit.php'); -
lazy-pinner/tags/2.1.2/readme.txt
r716329 r716338 5 5 Requires at least: 3.0 6 6 Tested up to: 3.5.1 7 Stable tag: 2.1. 17 Stable tag: 2.1.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 60 60 = 2.1.1 = 61 61 Added uninstall function to remove tables and options this plugin creates 62 63 = 2.1.2 = 64 Added the new file I forgot -
lazy-pinner/trunk/lazypinner.php
r716328 r716338 4 4 Plugin URI: http://www.biofects.com 5 5 Description: This plugin automatically post your image and title to pineterst on Publish or Save 6 Version: 2.1. 16 Version: 2.1.2 7 7 Author: Lee Thompson and Nick Westerlund 8 8 Author URI: http://www.biofects.com … … 46 46 47 47 $sql2 = "CREATE TABLE " . $table2 ." ( 48 pinner_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMPON UPDATE CURRENT_TIMESTAMP,48 pinner_date TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, 49 49 pinner_postid int(11) NOT NULL, 50 50 pinner_comment varchar(255) NOT NULL DEFAULT '' … … 76 76 } 77 77 78 function LazyPinnerUninstall() { 79 global $wpdb; 80 $table1 = $wpdb->prefix."lazy_pinner_user"; 81 $table2 = $wpdb->prefix."lazy_pinner_logs"; 82 delete_option('lazypinner_version'); 83 $sql1 = "DROP TABLE IF EXISTS $table1"; 84 $sql2 = "DROP TABLE IF EXISTS $table2"; 85 dbDelta($sql1); 86 dbDelta($sql2); 87 } 88 register_uninstall_hook( __FILE__, 'LazyPinnerUninstall' ); 78 89 79 90 include('includes/pinit.php'); -
lazy-pinner/trunk/readme.txt
r716328 r716338 5 5 Requires at least: 3.0 6 6 Tested up to: 3.5.1 7 Stable tag: 2.1. 17 Stable tag: 2.1.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 60 60 = 2.1.1 = 61 61 Added uninstall function to remove tables and options this plugin creates 62 63 = 2.1.2 = 64 Added the new file I forgot
Note: See TracChangeset
for help on using the changeset viewer.