From dfd6adb11e582debc0880eefbf138ff3364ee52d Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 27 Jul 2006 11:59:03 +0000 Subject: [PATCH] problem switching from innodb to myisam --- ChangeLog | 4 ++++ tbl_properties_operations.php | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 6fd05f86a..b4b1a6acf 100755 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,10 @@ $Id$ $Source$ +2006-07-27 Marc Delisle + * pdf_pages.php: prepare implementation for automatic layout on InnoDB + * tbl_properties_operations.php: problem switching from InnoDB to MyISAM + 2006-07-26 Marc Delisle * server_privileges.php: bug #1526557, display error when admin lacks some privileges and tries to do a privilege change diff --git a/tbl_properties_operations.php b/tbl_properties_operations.php index cf0421c1d..2dde3abfc 100644 --- a/tbl_properties_operations.php +++ b/tbl_properties_operations.php @@ -74,6 +74,7 @@ if (isset($_REQUEST['submitoptions'])) { $l_tbl_type = strtolower($tbl_type); if (($l_tbl_type === 'myisam' || $l_tbl_type === 'isam') + && isset($_REQUEST['new_pack_keys']) && $_REQUEST['new_pack_keys'] != (string)$pack_keys) { $table_alters[] = 'pack_keys = ' . $_REQUEST['new_pack_keys']; }