Changeset 12

Show
Ignore:
Timestamp:
2007-11-21 22:54:08 (5 years ago)
Author:
hannes
Message:

forgot to complete the success message in previous commit

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/includes/lang/en.php

    r11 r12  
    395395$LANG['installer_config_success'] = 'The configuration files have been set up successfully.'; 
    396396$LANG['installer_database_success'] = 'The database has been set up successfully.'; 
    397 $LANG['installer_overall_success'] = "Congratulations! Your Spam Board has been fully set up. If you didn't see any error messages or warnings, it should now be fully functional.<br /><br />You still have some work to do, of course:<ol><li>delete this installer script</li><li>go to %boardurl%</li><li>log in with the admin account you just created</li><li></li></ol>"; 
     397$LANG['installer_overall_success'] = "Congratulations! Your Spam Board has been fully set up. If you didn't see any error messages or warnings, it should now be fully functional.<br /><br />You still have some work to do, of course:<ol><li>delete this installer script</li><li>go to %boardurl%</li><li>log in with the admin account you just created</li><li>go to the Administration Panel</li><li>set up at least one category and one forum</li><li>set appropriate permissions on this forum</li><li>deactive maintainance mode in the settings</li></ol>"; 
    398398 
    399399/* error messages */ 
  • trunk/install.php

    r11 r12  
    262262        /* everything done */ 
    263263        if ($ok == 1) { 
    264             print($LANG['installer_overall_success']); 
     264            print(str_replace('%boardurl%', 'http://' . $_SERVER['HTTP_HOST'] . $SETTINGS['webpath'] , $LANG['installer_overall_success'])); 
    265265        } 
    266266    break;