1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-08-13 16:54:00 -04:00

error msg when install folder exists

This commit is contained in:
Nicolas Lœuillet 2013-08-12 14:27:51 +02:00
parent 6a9e4bfc90
commit cd03b575df

View File

@ -20,7 +20,7 @@ class Poche
{ {
if (file_exists('./install') && !DEBUG_POCHE) { if (file_exists('./install') && !DEBUG_POCHE) {
Tools::logm('folder /install exists'); Tools::logm('folder /install exists');
die('To install your poche with sqlite, copy /install/poche.sqlite in /db and delete the folder /install. you have to delete the /install folder before using poche.'); die('If you want to update your poche, you just have to delete /install folder. <br />To install your poche with sqlite, copy /install/poche.sqlite in /db and delete the folder /install. you have to delete the /install folder before using poche.');
} }
$this->store = new Database(); $this->store = new Database();