Natural order

This commit is contained in:
Marc Delisle
2004-03-26 18:49:56 +00:00
parent e5c4f13829
commit 736b182dad
4 changed files with 36 additions and 5 deletions

View File

@@ -136,7 +136,7 @@ if (isset($cfg['FileRevision'])) {
} else {
$cfg['FileRevision'] = array(1, 1);
}
if ($cfg['FileRevision'][0] < 2 || ($cfg['FileRevision'][0] == 2 && $cfg['FileRevision'][1] < 11)) {
if ($cfg['FileRevision'][0] < 2 || ($cfg['FileRevision'][0] == 2 && $cfg['FileRevision'][1] < 12)) {
require_once('./libraries/config_import.lib.php');
}

View File

@@ -799,6 +799,10 @@ if (!isset($cfg['WYSIWYG-PDF'])) {
$cfg['WYSIWYG-PDF'] = TRUE;
}
if (!isset($cfg['NaturalOrder'])) {
$cfg['NaturalOrder'] = TRUE;
}
if (!isset($cfg['DefaultQueryTable'])) {
$cfg['DefaultQueryTable'] = 'SELECT * FROM %t WHERE 1';
}