* Patch #1697590: Proper directory name of SQLite DB-error messages,

thanks to Thijs Kinkhorst
This commit is contained in:
Garvin Hicking 2007-04-10 13:23:34 +00:00
parent f7e6f3d9c7
commit bc46b71a94
2 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,9 @@
Version 1.2 () Version 1.2 ()
------------------------------------------------------------------------ ------------------------------------------------------------------------
* Patch #1697590: Proper directory name of SQLite DB-error messages,
thanks to Thijs Kinkhorst
* Enabled setting cache-control headers by default. * Enabled setting cache-control headers by default.
* Fix wrong next/previous page links when using wrapper.php indexFile * Fix wrong next/previous page links when using wrapper.php indexFile

View File

@ -318,7 +318,7 @@ function serendipity_db_probe($hash, &$errs)
return true; return true;
} }
$errs[] = "Unable to open \"{$serendipity['serendipityPath']}$dbName.db\" - check permissions (directory needs to be writeable for webserver)!"; $errs[] = "Unable to open \"$dbfile\" - check permissions (directory needs to be writeable for webserver)!";
return false; return false;
} }