Changeset 616613
- Timestamp:
- 10/24/2012 12:00:45 AM (13 years ago)
- Location:
- wordpress-move/trunk
- Files:
-
- 3 edited
-
libs/functions-database-backup.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
wordpress-move.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-move/trunk/libs/functions-database-backup.php
r493292 r616613 110 110 $values = array(); 111 111 112 while ( isset( $row[$i][$j] ) ) {112 while ( array_key_exists( $j, $row[$i] ) ) { 113 113 114 114 if ( strstr( $row[$i][$j], '_site_transient_' ) || strstr( $row[$i][$j], '_transient_' ) ) -
wordpress-move/trunk/readme.txt
r554022 r616613 4 4 Tags: backup, domain, migrate, migration, move, restore 5 5 Requires at least: 3.2 6 Tested up to: 3.4 7 Stable tag: 1.3. 16 Tested up to: 3.4.2 7 Stable tag: 1.3.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 64 64 == Changelog == 65 65 66 = 1.3.2 = 67 * Fixed the bug causing problems with other plugins such as Gravity Forms. 68 66 69 = 1.3.1 = 67 70 * Fixed several bugs. … … 102 105 == Upgrade Notice == 103 106 107 = 1.3.2 = 108 The bug that was causing problems with other plugins has been fixed. Previous releases were omitting NULL fields and causing data loss as a result. 109 104 110 = 1.3.1 = 105 111 Performance has been improved and several bugs have been fixed. Also, if the Safe Mode is disabled, operations will not be interrupted by the maximum execution time error anymore. -
wordpress-move/trunk/wordpress-move.php
r512534 r616613 4 4 Plugin URI: http://www.mertyazicioglu.com/wordpress-move/ 5 5 Description: WordPress Move is a migration assistant for WordPress that can take care of changing your domain name and/or moving your database and files to another server. After activating the plugin, please navigate to WordPress Move page under the Settings menu to configure it. Then, you can start using the Migration Assistant under the Tools menu. 6 Version: 1.3. 16 Version: 1.3.2 7 7 Author: Mert Yazicioglu 8 8 Author URI: http://www.mertyazicioglu.com
Note: See TracChangeset
for help on using the changeset viewer.