From d24b1e963e208a03f08b1d17ed9f319bd59a36ad Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Wed, 25 Dec 2013 21:46:24 +0100 Subject: Lancer automatiquement le raffraîchissement des flux après une mise à jour de FreshRSS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/marienfressinaud/FreshRSS/issues/330 --- public/install.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'public') diff --git a/public/install.php b/public/install.php index 13abb010b..ad5527765 100644 --- a/public/install.php +++ b/public/install.php @@ -2,7 +2,8 @@ require('../constants.php'); include(LIB_PATH . '/lib_rss.php'); -session_start (); +session_name('FreshRSS'); +session_start(); if (isset ($_GET['step'])) { define ('STEP', $_GET['step']); @@ -479,6 +480,7 @@ function checkStep () { } elseif (STEP > 3 && $s3['all'] != 'ok') { header ('Location: index.php?step=3'); } + $_SESSION['actualize_feeds'] = true; } function checkStep0 () { moveOldFiles() && removeOldFiles(); -- cgit v1.2.3