added an option to define whether previous login should be recalled or not in cookie auth. mode

This commit is contained in:
Loïc Chapeaux
2002-02-09 12:51:02 +00:00
parent 083dc0d6e9
commit 81b35af273
5 changed files with 39 additions and 11 deletions

View File

@@ -73,6 +73,9 @@ if (!defined('PMA_COMMON_LIB_INCLUDED')){
if (!isset($cfgShowStats)) {
$cfgShowStats = TRUE;
}
if (!isset($cfgLoginCookieRecall)) {
$cfgLoginCookieRecall = TRUE;
}
if (!isset($cfgShowTooltip)) {
$cfgShowTooltip = TRUE;
}
@@ -114,6 +117,9 @@ if (!defined('PMA_COMMON_LIB_INCLUDED')){
if (!isset($cfgBrowsePointerColor)) {
$cfgBrowsePointerColor = '';
}
if (!isset($cfgBrowseMarkRow)) {
$cfgBrowseMarkRow = 0;
}
if (!isset($cfgTextareaCols)) {
$cfgTextareaCols = 40;
}