diff options
author | plegall <plg@piwigo.org> | 2011-06-14 12:14:29 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-06-14 12:14:29 +0000 |
commit | fcda5191191c70b613c50c18016b4d6c597183a8 (patch) | |
tree | a7f0551caec5410d17dc0c2546fb090eaa9cda31 /include/user.inc.php | |
parent | cb25d20be5d9fb08161803df83c155bdfdb64c29 (diff) |
merge r11367 from branch 2.2 to trunk
bug 2344 fixed: all "Go to Home" links depends on the user defined "Gallery URL".
git-svn-id: http://piwigo.org/svn/trunk@11368 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/user.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/user.inc.php b/include/user.inc.php index c6110ecd1..e02c2f9bf 100644 --- a/include/user.inc.php +++ b/include/user.inc.php @@ -30,7 +30,7 @@ if (isset($_COOKIE[session_name()])) if (isset($_GET['act']) and $_GET['act'] == 'logout') { // logout logout_user(); - redirect(make_index_url()); + redirect(get_gallery_home_url()); } elseif (!empty($_SESSION['pwg_uid'])) { |