diff --git a/index.php b/index.php index 7ded3bd..2c81afd 100644 --- a/index.php +++ b/index.php @@ -8,7 +8,7 @@ * @license http://www.wtfpl.net/ see COPYING file */ -define ('POCHE', '1.5.0'); +define ('POCHE', '1.5.1'); require 'check_setup.php'; require_once 'inc/poche/global.inc.php'; session_start(); diff --git a/install/index.php b/install/index.php index d213717..d31bad8 100644 --- a/install/index.php +++ b/install/index.php @@ -2,8 +2,8 @@ $errors = array(); $successes = array(); if ($_POST['download']) { - if (!file_put_contents("cache/vendor.zip", fopen("http://wllbg.org/vendor", 'r'))) { - $errors[] = 'Impossible to download vendor.zip. Please download it here manually<∕a> and unzip it in your wallabag folder.'; + if (!file_put_contents("cache/vendor.zip", fopen("http://static.wallabag.org/files/vendor.zip", 'r'))) { + $errors[] = 'Impossible to download vendor.zip. Please download it manually<∕a> and unzip it in your wallabag folder.'; } else { if (extension_loaded('zip')) { @@ -129,7 +129,7 @@ else if ($_POST['install']) { $params = array($id_user, 'language', 'en_EN.UTF8'); $query = executeQuery($handle, $sql, $params); - $successes[] = 'wallabag is now installed. Don\'t forget to delete install folder.'; + $successes[] = 'wallabag is now installed. Don\'t forget to delete install folder. Then, reload this page.'; } } }