bug #2163437 [core] Cannot disable PMA tables

This commit is contained in:
Marc Delisle
2008-10-19 00:42:04 +00:00
parent 7e4a3a251e
commit c546621999
2 changed files with 8 additions and 6 deletions

View File

@@ -25,6 +25,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
+ [lang] Japanese update, thanks to Ishigaki Kenichi
- patch #2176438 [privileges] Wrong message when changing password,
thanks to incognito - zytisin
- bug #2163437 [core] Cannot disable PMA tables
3.0.0.0 (2008-09-27)
+ [export] properly handle line breaks for YAML, thanks to Dan Barry -

View File

@@ -42,8 +42,9 @@ function PMA_query_as_cu($sql, $show_error = true, $options = 0)
} // end of the "PMA_query_as_cu()" function
/**
* @uses $_SESSION['relation'] for caching
* @uses $_SESSION['relation' . $GLOBALS['server']] for caching
* @uses $GLOBALS['cfgRelation'] to set it
* @uses $GLOBALS['server'] to ensure we are using server-specific pmadb
* @uses PMA__getRelationsParam()
* @uses PMA_printRelationsParamDiagnostic()
* @param bool $verbose whether to print diagnostic info
@@ -51,18 +52,18 @@ function PMA_query_as_cu($sql, $show_error = true, $options = 0)
*/
function PMA_getRelationsParam($verbose = false)
{
if (empty($_SESSION['relation'])) {
$_SESSION['relation'] = PMA__getRelationsParam();
if (empty($_SESSION['relation' . $GLOBALS['server']])) {
$_SESSION['relation' . $GLOBALS['server']] = PMA__getRelationsParam();
}
if ($verbose) {
PMA_printRelationsParamDiagnostic($_SESSION['relation']);
PMA_printRelationsParamDiagnostic($_SESSION['relation' . $GLOBALS['server']]);
}
// just for BC
$GLOBALS['cfgRelation'] = $_SESSION['relation'];
$GLOBALS['cfgRelation'] = $_SESSION['relation' . $GLOBALS['server']];
return $_SESSION['relation'];
return $_SESSION['relation' . $GLOBALS['server']];
}
/**