diff options
Diffstat (limited to 'installer')
-rw-r--r-- | installer/installer.php | 1 | ||||
-rw-r--r-- | installer/views/success.html.php | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/installer/installer.php b/installer/installer.php index ff727340..2a8b6219 100644 --- a/installer/installer.php +++ b/installer/installer.php @@ -106,6 +106,7 @@ class installer { $data = "session_id|s:32:\"$session_id\""; $data .= ";user_agent|s:{$user_agent_len}:\"$user_agent\""; $data .= ";user|i:2"; + $data .= ";after_install|i:1"; $data .= ";last_activity|i:$now"; $data = base64_encode($data); $sql = "INSERT INTO {sessions} VALUES('$session_id', $now, '$data')"; diff --git a/installer/views/success.html.php b/installer/views/success.html.php index d7dbc4d1..4bca2fb1 100644 --- a/installer/views/success.html.php +++ b/installer/views/success.html.php @@ -19,5 +19,5 @@ </p> <?php endif ?> -<h2> <a href="..?after_install=1">Start using Gallery</a> </h2> +<h2> <a href="..">Start using Gallery</a> </h2> |