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