sqlite3 strict check
This commit is contained in:
@ -3,6 +3,9 @@
|
|||||||
Version 1.6 ()
|
Version 1.6 ()
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
* Stricter check for sqlite3 extension, only functional interface
|
||||||
|
instead of OOP currently supported (garvinhicking)
|
||||||
|
|
||||||
* Experimental: When sending quoted-printable notification mails,
|
* Experimental: When sending quoted-printable notification mails,
|
||||||
auto-split after 75 characters.
|
auto-split after 75 characters.
|
||||||
(Ref: http://board.s9y.org/viewtopic.php?f=3&t=16314)
|
(Ref: http://board.s9y.org/viewtopic.php?f=3&t=16314)
|
||||||
|
@ -895,10 +895,10 @@ function serendipity_probeInstallation($item) {
|
|||||||
if (extension_loaded('mysqli')) {
|
if (extension_loaded('mysqli')) {
|
||||||
$res['mysqli'] = 'MySQLi';
|
$res['mysqli'] = 'MySQLi';
|
||||||
}
|
}
|
||||||
if (extension_loaded('sqlite')) {
|
if (extension_loaded('sqlite') && function_exists('sqlite_open')) {
|
||||||
$res['sqlite'] = 'SQLite';
|
$res['sqlite'] = 'SQLite';
|
||||||
}
|
}
|
||||||
if (extension_loaded('SQLITE3')) {
|
if (extension_loaded('SQLITE3') && function_exists('sqlite3_open')) {
|
||||||
$res['sqlite3'] = 'SQLite3';
|
$res['sqlite3'] = 'SQLite3';
|
||||||
}
|
}
|
||||||
if (function_exists('sqlrcon_alloc')) {
|
if (function_exists('sqlrcon_alloc')) {
|
||||||
|
Reference in New Issue
Block a user