diff options
author | Thomas Citharel <tcit@tcit.fr> | 2015-02-10 22:23:48 +0100 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2015-02-10 22:23:48 +0100 |
commit | d7d88631e125c98cc2e7432c8147afc2ceda3d42 (patch) | |
tree | b567279f52a2fea6271a0541c8937e9f2b91c0a5 /install | |
parent | 28c42eb1d83856d014a74fe0370d6d0a7a892580 (diff) | |
parent | 9fdd88436dec8abcf171518f7fa99d29bc9d5672 (diff) | |
download | wallabag-d7d88631e125c98cc2e7432c8147afc2ceda3d42.tar.gz wallabag-d7d88631e125c98cc2e7432c8147afc2ceda3d42.tar.zst wallabag-d7d88631e125c98cc2e7432c8147afc2ceda3d42.zip |
Merge pull request #1015 from wallabag/savewithtags
Savewithtags
Diffstat (limited to 'install')
-rwxr-xr-x | install/index.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/install/index.php b/install/index.php index bd9e502d..0d3977bb 100755 --- a/install/index.php +++ b/install/index.php | |||
@@ -11,6 +11,8 @@ | |||
11 | $errors = array(); | 11 | $errors = array(); |
12 | $successes = array(); | 12 | $successes = array(); |
13 | 13 | ||
14 | $final = false; | ||
15 | |||
14 | require_once('install_functions.php'); | 16 | require_once('install_functions.php'); |
15 | 17 | ||
16 | if (isset($_GET['clean'])) { | 18 | if (isset($_GET['clean'])) { |
@@ -49,7 +51,6 @@ else if (isset($_POST['install'])) { | |||
49 | $errors[] = 'You must install twig before.'; | 51 | $errors[] = 'You must install twig before.'; |
50 | } else { | 52 | } else { |
51 | $continue = true; | 53 | $continue = true; |
52 | $final = false; | ||
53 | $salt = generate_salt(); | 54 | $salt = generate_salt(); |
54 | $content = file_get_contents('inc/poche/config.inc.default.php'); | 55 | $content = file_get_contents('inc/poche/config.inc.default.php'); |
55 | 56 | ||