Show
Ignore:
Timestamp:
07/07/08 14:56:01 (5 months ago)
Author:
sidtheduck
Message:

+ cleared out require and include functions from included files (no longer needed if included)
+ added code to stop direct access to included files
+ adding back r549 translatable themes
+ cleaned version of "Air" theme

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/plog-admin/includes/install-form-setup-complete.php

    r550 r552  
    11<?php 
     2if (basename($_SERVER['PHP_SELF']) == basename( __FILE__ )) { 
     3        // ignorance is bliss 
     4        exit(); 
     5} 
     6 
    27if (!defined('PLOGGER_DIR')) { 
    38        return false; 
     
    712        <form method="POST"> 
    813        <p>Configuration setup is now complete.<br />Click 'Install' to finish installation.</p> 
    9         <p>Your username is <?php echo $_SESSION['install_values']['admin_username']; ?> and your password is `<?php echo $_SESSION['install_values']['admin_password']; ?>`</p> 
     14        <p>Your username is `<strong><?php echo $_SESSION['install_values']['admin_username']; ?></strong>` and your password is `<strong><?php echo $_SESSION['install_values']['admin_password']; ?></strong>`</p> 
    1015<?php if (!empty($_SESSION["plogger_config"])) { ?> 
    1116        <p>Before you can proceed, please <input type="submit" name="dlconfig" value="click here"/> to download configuration file for your gallery, then upload it to your webhost (into the same directory where you installed Plogger itself).</p>