aboutsummaryrefslogtreecommitdiffhomepage
path: root/install/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'install/index.php')
-rw-r--r--install/index.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/index.php b/install/index.php
index d2137172..d31bad89 100644
--- a/install/index.php
+++ b/install/index.php
@@ -2,8 +2,8 @@
2$errors = array(); 2$errors = array();
3$successes = array(); 3$successes = array();
4if ($_POST['download']) { 4if ($_POST['download']) {
5 if (!file_put_contents("cache/vendor.zip", fopen("http://wllbg.org/vendor", 'r'))) { 5 if (!file_put_contents("cache/vendor.zip", fopen("http://static.wallabag.org/files/vendor.zip", 'r'))) {
6 $errors[] = 'Impossible to download vendor.zip. Please <a href="http://wllbg.org/vendor">download it here manually<∕a> and unzip it in your wallabag folder.'; 6 $errors[] = 'Impossible to download vendor.zip. Please <a href="http://wllbg.org/vendor">download it manually<∕a> and unzip it in your wallabag folder.';
7 } 7 }
8 else { 8 else {
9 if (extension_loaded('zip')) { 9 if (extension_loaded('zip')) {
@@ -129,7 +129,7 @@ else if ($_POST['install']) {
129 $params = array($id_user, 'language', 'en_EN.UTF8'); 129 $params = array($id_user, 'language', 'en_EN.UTF8');
130 $query = executeQuery($handle, $sql, $params); 130 $query = executeQuery($handle, $sql, $params);
131 131
132 $successes[] = 'wallabag is now installed. Don\'t forget to delete install folder.'; 132 $successes[] = 'wallabag is now installed. Don\'t forget to delete install folder. Then, <a href="index.php">reload this page</a>.';
133 } 133 }
134 } 134 }
135 } 135 }