* Removed check for default tab values: They are already checked in config_import.lib.php3;
* Corrected config file revison.
This commit is contained in:
@@ -30,6 +30,10 @@ $Source$
|
|||||||
* scripts/create-tables.sql: Added some notes about lower_case_table_names.
|
* scripts/create-tables.sql: Added some notes about lower_case_table_names.
|
||||||
* libraries/sqlparser.lib.php3: Parser treated "CHARACTER" as column type,
|
* libraries/sqlparser.lib.php3: Parser treated "CHARACTER" as column type,
|
||||||
even if it was used in "CHARACTER SET".
|
even if it was used in "CHARACTER SET".
|
||||||
|
* libraries/common.lib.php3:
|
||||||
|
- Removed check for default tab values: They are already checked in
|
||||||
|
config_import.lib.php3;
|
||||||
|
- Corrected config file revison.
|
||||||
|
|
||||||
2003-05-29 Michal Cihar <nijel@users.sourceforge.net>
|
2003-05-29 Michal Cihar <nijel@users.sourceforge.net>
|
||||||
* lang/czech: Updated.
|
* lang/czech: Updated.
|
||||||
|
@@ -138,7 +138,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
|
|||||||
* Includes compatibility code for older config.inc.php3 revisions
|
* Includes compatibility code for older config.inc.php3 revisions
|
||||||
* if necessary
|
* if necessary
|
||||||
*/
|
*/
|
||||||
if (!isset($cfg['FileRevision']) || (int) substr($cfg['FileRevision'], 13, 3) < 175) {
|
if (!isset($cfg['FileRevision']) || (int) substr($cfg['FileRevision'], 13, 3) < 181) {
|
||||||
include('./libraries/config_import.lib.php3');
|
include('./libraries/config_import.lib.php3');
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -658,19 +658,6 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Make sure $cfg['DefaultTabDatabase'] and $cfg['DefaultTabTable'] are set.
|
|
||||||
* Todo: check if it is set to a *valid* value.
|
|
||||||
*/
|
|
||||||
if (empty($cfg['DefaultTabDatabase'])) {
|
|
||||||
$cfg['DefaultTabDatabase'] = 'db_details_structure.php3';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (empty($cfg['DefaultTabTable'])) {
|
|
||||||
$cfg['DefaultTabTable'] = 'tbl_properties_structure.php3';
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Use mysql_connect() or mysql_pconnect()?
|
* Use mysql_connect() or mysql_pconnect()?
|
||||||
*/
|
*/
|
||||||
@@ -1687,8 +1674,8 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
|
|||||||
global $PHP_SELF, $cfg;
|
global $PHP_SELF, $cfg;
|
||||||
global $db_details_links_count_tabs;
|
global $db_details_links_count_tabs;
|
||||||
|
|
||||||
if (((!isset($GLOBALS['active_page']) && basename($PHP_SELF) == $link) ||
|
if (((!isset($GLOBALS['active_page']) && basename($PHP_SELF) == $link) ||
|
||||||
$active ||
|
$active ||
|
||||||
(isset($GLOBALS['active_page']) && $GLOBALS['active_page'] == $link)
|
(isset($GLOBALS['active_page']) && $GLOBALS['active_page'] == $link)
|
||||||
) && ($text != $GLOBALS['strEmpty'] && $text != $GLOBALS['strDrop'])) {
|
) && ($text != $GLOBALS['strEmpty'] && $text != $GLOBALS['strDrop'])) {
|
||||||
$bgcolor = 'silver';
|
$bgcolor = 'silver';
|
||||||
|
Reference in New Issue
Block a user