Installer welcome page can tolerate 1.0.x databases again
authorDan
Sat, 18 Apr 2009 23:03:36 -0400
changeset 938 5d9060b4253f
parent 937 b174cdb75bec
child 939 32a43ae3649b
Installer welcome page can tolerate 1.0.x databases again
install/includes/ui.php
install/index.php
--- a/install/includes/ui.php	Fri Apr 17 20:45:35 2009 -0400
+++ b/install/includes/ui.php	Sat Apr 18 23:03:36 2009 -0400
@@ -228,9 +228,10 @@
   function show_footer()
   {
     $scriptpath = scriptPath;
+    $year = date('Y');
     echo <<<EOF
           <div id="copyright">
-            Enano and its various components, related documentation, and artwork are copyright &copy; 2006-2008 Dan Fuhry.<br />
+            Enano and its various components, related documentation, and artwork are copyright &copy; 2006-$year Dan Fuhry.<br />
             Copyrights for <a href="{$scriptpath}/licenses/">third-party components</a> are held by their respective authors.<br />
             This program is Free Software; see the file "GPL" included with this package for details.
           </div>
--- a/install/index.php	Fri Apr 17 20:45:35 2009 -0400
+++ b/install/index.php	Sat Apr 18 23:03:36 2009 -0400
@@ -32,6 +32,7 @@
 {
   // Is Enano installed? If so, load the config and check version info
   define('IN_ENANO_UPGRADE', 'true');
+  define('ENANO_EXIT_AFTER_CONFIG', 1);
   // common.php above calls chdir() to the ENANO_ROOT, so this loads the full Enano API.
   require('includes/common.php');
 }