Merge branch 'QA_4_1'

This commit is contained in:
Madhura Jayaratne 2014-01-04 12:32:08 +05:30
commit 5c0329034b

View File

@ -83,10 +83,10 @@ if (true === $cfg['SkipLockedTables'] && ! PMA_DRIZZLE) {
);
$tblGroupSql .= " WHERE ("
. PMA_Util::backquote('Tables_in_' . $db)
. " LIKE '^" . $groupWithSeperator . "%'"
. " LIKE '" . $groupWithSeperator . "%'"
. " OR "
. PMA_Util::backquote('Tables_in_' . $db)
. " LIKE '^" . $group . "$')";
. " LIKE '" . $group . "')";
$whereAdded = true;
}
if (PMA_isValid($_REQUEST['tbl_type'], array('table', 'view'))) {