From 12f7f1e8374e042deebdebc1d90ca1a963d23b39 Mon Sep 17 00:00:00 2001 From: chrisaga Date: Sat, 15 Jul 2006 08:20:47 +0000 Subject: [PATCH] improve : allow to redirect guest from index.php to identification.php (feature 470) usefull if the whole gallery is private we lost it when category.php became index.php git-svn-id: http://piwigo.org/svn/trunk@1470 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/config_default.inc.php | 5 +++++ index.php | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/include/config_default.inc.php b/include/config_default.inc.php index c0a98eb44..c4c4bdb4d 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -388,6 +388,11 @@ $conf['webmaster_id'] = 1; // allow to use adviser mode $conf['allow_adviser'] = false; +// does the guest have access ? +// (not a security feature, set your categories "private" too) +// If false it'll be redirected from index.php to identification.php +$conf['guest_access'] = true; + // +-----------------------------------------------------------------------+ // | upload | // +-----------------------------------------------------------------------+ diff --git a/index.php b/index.php index b1941a717..345929e67 100644 --- a/index.php +++ b/index.php @@ -48,6 +48,10 @@ if ( isset( $_GET['act'] ) ini_get('session.cookie_path'), ini_get('session.cookie_domain') ); redirect( make_index_url() ); } +if ($user['is_the_guest'] and !$conf['guest_access']) +{ + redirect (get_root_url().'identification.php'); +} //---------------------------------------------- change of image display order if (isset($_GET['image_order']))