RFE #1177459, BOOL column type

This commit is contained in:
Marc Delisle
2005-07-27 00:27:49 +00:00
parent 3324a1e9e2
commit 0966e9faa0
3 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,8 @@ $Source$
2005-07-26 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php: bug #1243908, left panel browse icon alt tag not updated
after inserting a row
* config.inc.php, libraries/config_import.lib.php, /common.lib.php:
RFE #1177459, BOOL column type
2005-07-26 Michal Čihař <michal@cihar.com>
* export.php: Use actual MIME type for CSV.

View File

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

View File

@@ -924,6 +924,8 @@ if (!isset($cfg['ColumnTypes'])) {
'SET'
);
}
} elseif (!isset($cfg['ColumnTypes']['BOOL'])) {
$cfg['ColumnTypes'][] = 'BOOL';
}
if (!isset($cfg['AttributeTypes'])) {