bug 2344 fixed: all "Go to Home" links depends on the user defined "Gallery URL".

git-svn-id: http://piwigo.org/svn/branches/2.2@11367 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2011-06-14 12:14:05 +00:00
parent e7f8265da1
commit 57207cf2ae
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -149,7 +149,7 @@ $template->assign(
'U_USERS'=> $link_start.'user_list',
'U_GROUPS'=> $link_start.'group_list',
'U_PERMALINKS'=> $link_start.'permalinks',
'U_RETURN'=> make_index_url(),
'U_RETURN'=> get_gallery_home_url(),
'U_ADMIN'=> PHPWG_ROOT_PATH.'admin.php',
'U_LOGOUT'=> PHPWG_ROOT_PATH.'index.php?act=logout',
'U_PLUGINS'=> $link_start.'plugins_list',
+1 -1
View File
@@ -58,7 +58,7 @@ if (isset($_POST['login']))
$remember_me = isset($_POST['remember_me']) and $_POST['remember_me']==1;
if ( try_log_user($_POST['username'], $_POST['password'], $remember_me) )
{
redirect(empty($redirect_to) ? make_index_url() : $redirect_to);
redirect(empty($redirect_to) ? get_gallery_home_url() : $redirect_to);
}
else
{
+1 -1
View File
@@ -50,7 +50,7 @@ $template->assign(
'CONTENT_ENCODING' => get_pwg_charset(),
'PAGE_TITLE' => strip_tags($title),
'U_HOME' => make_index_url(),
'U_HOME' => get_gallery_home_url(),
));
+1 -1
View File
@@ -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']))
{