diff options
author | Nicolas Lœuillet <nicolas.loeuillet@gmail.com> | 2014-02-19 13:55:40 +0100 |
---|---|---|
committer | Nicolas Lœuillet <nicolas.loeuillet@gmail.com> | 2014-02-19 13:55:40 +0100 |
commit | fb5a9666ed99abe16b8823a98aed1a6dce03bb04 (patch) | |
tree | d7b855b0a5185fc8e26914b957557c8ebee4ae3d | |
parent | b89d5a2bf48c2c1eb796963b3401aca498618ec4 (diff) | |
download | wallabag-fb5a9666ed99abe16b8823a98aed1a6dce03bb04.tar.gz wallabag-fb5a9666ed99abe16b8823a98aed1a6dce03bb04.tar.zst wallabag-fb5a9666ed99abe16b8823a98aed1a6dce03bb04.zip |
version number 1.5.11.5.1.1
-rw-r--r-- | index.php | 2 | ||||
-rw-r--r-- | install/index.php | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -8,7 +8,7 @@ | |||
8 | * @license http://www.wtfpl.net/ see COPYING file | 8 | * @license http://www.wtfpl.net/ see COPYING file |
9 | */ | 9 | */ |
10 | 10 | ||
11 | define ('POCHE', '1.5.0'); | 11 | define ('POCHE', '1.5.1'); |
12 | require 'check_setup.php'; | 12 | require 'check_setup.php'; |
13 | require_once 'inc/poche/global.inc.php'; | 13 | require_once 'inc/poche/global.inc.php'; |
14 | session_start(); | 14 | session_start(); |
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(); |
4 | if ($_POST['download']) { | 4 | if ($_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 | } |