Changeset 638768
- Timestamp:
- 12/13/2012 07:11:58 PM (13 years ago)
- Location:
- edit-any-table/trunk
- Files:
-
- 2 edited
-
EditAnyTable.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
edit-any-table/trunk/EditAnyTable.php
r591003 r638768 9 9 Description: Dashboard widget which allows the editing of all tables in any database 10 10 11 Version: 1.1. 211 Version: 1.1.3 12 12 13 13 Author: Nigel Bachmann … … 95 95 96 96 97 $result = $eat_db->get_col($eat_db->prepare("show tables" ));97 $result = $eat_db->get_col($eat_db->prepare("show tables",null)); 98 98 99 99 … … 348 348 //Get a single record for column info 349 349 350 $sql = $eat_db->prepare("select * from ".$table2Edit." LIMIT 1" );350 $sql = $eat_db->prepare("select * from ".$table2Edit." LIMIT 1",null); 351 351 352 352 //echo $sql."<br />"; … … 642 642 //Get a single record for column info 643 643 644 $sql = $eat_db->prepare("select * from ".$table2Edit." LIMIT 1" );644 $sql = $eat_db->prepare("select * from ".$table2Edit." LIMIT 1",null); 645 645 646 646 //echo $sql."<br />"; -
edit-any-table/trunk/readme.txt
r591003 r638768 4 4 Tags: database, table, update, insert, add, delete, edit, MySQL, phpMyAdmin, data, editor, widget, dashboard 5 5 Requires at least: 3.0.0 6 Tested up to: 3. 4.16 Tested up to: 3.5 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 47 47 == Changelog == 48 48 49 = 1.1.3 = 50 * Bug introduced by WordPress 3.5 on the prepare statement (now always requires 2 parameters) FIXED 51 49 52 = 1.1.2 = 50 53 * Instructions link added to widget
Note: See TracChangeset
for help on using the changeset viewer.