mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
bug 895 : At the end of install, webmaster is automatically connected with two buttons: "Home" and "Admin"
git-svn-id: http://piwigo.org/svn/branches/2.0@3714 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -149,7 +149,8 @@ TD {
|
||||
{else}
|
||||
<p>
|
||||
<br />
|
||||
<input type="button" name="identification" value="{'Identification'|@translate}" onClick="window.open('identification.php');"/>
|
||||
<input type="button" name="home" value="{'home'|@translate}" onClick="window.location='index.php';"/>
|
||||
<input type="button" name="admin" value="{'admin'|@translate}" onClick="window.location='admin.php';"/>
|
||||
</p>
|
||||
|
||||
<div class="infos">
|
||||
@@ -159,6 +160,7 @@ TD {
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<br />
|
||||
<input type="button" name="subscribe" value="{'Subscribe %s'|@translate|@sprintf:$F_ADMIN_EMAIL}" onClick="window.open('{$SUBSCRIBE_BASE_URL}{$F_ADMIN_EMAIL}');"/>
|
||||
</p>
|
||||
{/if}
|
||||
|
||||
+21
@@ -421,6 +421,27 @@ else
|
||||
{
|
||||
array_push($errors, $error_copy);
|
||||
}
|
||||
else
|
||||
{
|
||||
session_set_save_handler('pwg_session_open',
|
||||
'pwg_session_close',
|
||||
'pwg_session_read',
|
||||
'pwg_session_write',
|
||||
'pwg_session_destroy',
|
||||
'pwg_session_gc'
|
||||
);
|
||||
if ( function_exists('ini_set') )
|
||||
{
|
||||
ini_set('session.use_cookies', $conf['session_use_cookies']);
|
||||
ini_set('session.use_only_cookies', $conf['session_use_only_cookies']);
|
||||
ini_set('session.use_trans_sid', intval($conf['session_use_trans_sid']));
|
||||
ini_set('session.cookie_httponly', 1);
|
||||
}
|
||||
session_name($conf['session_name']);
|
||||
session_set_cookie_params(0, cookie_path());
|
||||
$user = build_user(1, true);
|
||||
log_user($user['id'], false);
|
||||
}
|
||||
|
||||
$template->assign(
|
||||
'SUBSCRIBE_BASE_URL',
|
||||
|
||||
Reference in New Issue
Block a user