Incorrect report of missing relational features

This commit is contained in:
Marc Delisle
2009-06-24 21:18:00 +00:00
parent e67f4cbc54
commit e5892a65fc
2 changed files with 5 additions and 3 deletions

View File

@@ -23,6 +23,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
thanks to Tomas Srnka - tomassrnka
- bug #1601625 [display] The Ignore checkbox is not unchecked for ENUM
- bug #2809930 [setup] Notice: Undefined variable: k in setup/index.php
- bug [features] Incorrect report of missing relational features
3.2.0.0 (2009-06-15)
- [core] better support for vendor customisation (based on what Debian needs)

View File

@@ -57,13 +57,14 @@ function PMA_getRelationsParam($verbose = false)
$_SESSION['relation' . $GLOBALS['server']] = PMA__getRelationsParam();
}
// just for BC but needs to be before PMA_printRelationsParamDiagnostic()
// which uses it
$GLOBALS['cfgRelation'] = $_SESSION['relation' . $GLOBALS['server']];
if ($verbose) {
PMA_printRelationsParamDiagnostic($_SESSION['relation' . $GLOBALS['server']]);
}
// just for BC
$GLOBALS['cfgRelation'] = $_SESSION['relation' . $GLOBALS['server']];
return $_SESSION['relation' . $GLOBALS['server']];
}