aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-01-03 14:25:04 +0100
committerArthurHoaro <arthur@hoa.ro>2017-01-03 14:25:04 +0100
commite3a430babb9610c92102eb9b19b7e8e005192cf0 (patch)
treed27422a514cebe5266efe7472292b7785f3d4920 /index.php
parent436479c58f0da23fb05c3b26941beabd89d87561 (diff)
downloadShaarli-e3a430babb9610c92102eb9b19b7e8e005192cf0.tar.gz
Shaarli-e3a430babb9610c92102eb9b19b7e8e005192cf0.tar.zst
Shaarli-e3a430babb9610c92102eb9b19b7e8e005192cf0.zip
Fix fatal error during the install
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index 427eb239..a4d7d7ca 100644
--- a/index.php
+++ b/index.php
@@ -1949,8 +1949,8 @@ function install($conf)
1949 $conf->set( 1949 $conf->set(
1950 'api.secret', 1950 'api.secret',
1951 generate_api_secret( 1951 generate_api_secret(
1952 $this->conf->get('credentials.login'), 1952 $conf->get('credentials.login'),
1953 $this->conf->get('credentials.salt') 1953 $conf->get('credentials.salt')
1954 ) 1954 )
1955 ); 1955 );
1956 try { 1956 try {