Incorrect report of missing relational features

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

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']];
}