This commit is contained in:
Sebastian Mendel
2006-02-22 13:38:11 +00:00
parent 1a55a28a2a
commit ce2a08587d
2 changed files with 11 additions and 0 deletions

View File

@@ -37,6 +37,7 @@ $Source$
bug #1436279 Left frame links open in new windows in Safari
* libraries/footer.inc.php, themes/*/img/window-new.png *NEW*:
added icon for new window
* libraries/dbi/mysqli.dbi.lib.php: workaround for http://bugs.php.net/36007
2006-02-21 Michal Čihař <michal@cihar.com>
* scripts/setup.php:

View File

@@ -40,6 +40,16 @@ if (! defined('MYSQLI_BINARY_FLAG')) {
define('MYSQLI_BINARY_FLAG', 128);
}
/**
* @see http://bugs.php.net/36007
*/
if (! defined('MYSQLI_TYPE_NEWDECIMAL')) {
define('MYSQLI_TYPE_NEWDECIMAL', 246);
}
if (! defined('MYSQLI_TYPE_BIT')) {
define('MYSQLI_TYPE_BIT', 16);
}
/**
* connects to the database server
*