1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-30 17:29:53 +02:00

renamed some modifiers

This commit is contained in:
David Grudl
2006-06-08 02:02:05 +00:00
parent 3030881f07
commit 1e3728c582
9 changed files with 45 additions and 47 deletions

View File

@@ -14,11 +14,11 @@
* @license GNU GENERAL PUBLIC LICENSE
* @package dibi
* @category Database
* @version 0.6 $Revision$ $Date$
* @version 0.6b $Revision$ $Date$
*/
define('DIBI', 'Version 0.6 $Revision$');
define('DIBI', 'Version 0.6b $Revision$');
if (version_compare(PHP_VERSION , '5.0.3', '<'))
@@ -72,8 +72,8 @@ class dibi
*/
const
FIELD_TEXT = 's', // as 'string'
FIELD_BINARY = 'b',
FIELD_BOOL = 'l', // as 'logical'
FIELD_BINARY = 'S',
FIELD_BOOL = 'b',
FIELD_INTEGER = 'i',
FIELD_FLOAT = 'f',
FIELD_DATE = 'd',
@@ -376,7 +376,7 @@ class dibi
return '<strong style="color:blue">'.$matches[3].'</strong>';
if (!empty($matches[4])) // other keywords
return '<strong style="color:green">'.$matches[4].'</strong>';
return '<strong style="color:green">'.$matches[4].'</strong>';
}