diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-10 11:34:59 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-10 11:34:59 +0000 |
commit | a8daa6073f3ff14ff1f7dc7618ea41fd13aef393 (patch) | |
tree | 996bbd1ff6280575a4a73f988f586d7612a10c07 /views | |
parent | 94b9d7cac30e0da63ad7042a8bec41cb09320058 (diff) | |
download | elgg-a8daa6073f3ff14ff1f7dc7618ea41fd13aef393.tar.gz elgg-a8daa6073f3ff14ff1f7dc7618ea41fd13aef393.tar.bz2 |
finished the auto login option for the installer
git-svn-id: http://code.elgg.org/elgg/trunk@7042 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views')
-rw-r--r-- | views/installation/install/pages/complete.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/views/installation/install/pages/complete.php b/views/installation/install/pages/complete.php index ec50fe503..681db644e 100644 --- a/views/installation/install/pages/complete.php +++ b/views/installation/install/pages/complete.php @@ -9,7 +9,8 @@ echo autop(elgg_echo('install:complete:instructions')); <div class="install_nav"> <?php + $url = $vars['url'] . $vars['destination']; $text = elgg_echo('install:complete:gotosite'); - echo "<a href=\"{$vars['url']}index.php\">$text</a>"; + echo "<a href=\"$url\">$text</a>"; ?> </div> |