Revision: 184
Author: astronouth7303
Date: 2006-06-22 15:18:39 -0700 (Thu, 22 Jun 2006)
ViewCVS: http://svn.sourceforge.net/openfirst/?rev=184&view=rev
Log Message:
-----------
Fixed some undefined variable warnings.
Modified Paths:
--------------
trunk/src/config/first.php
Modified: trunk/src/config/first.php
===================================================================
--- trunk/src/config/first.php 2006-06-22 22:07:08 UTC (rev 183)
+++ trunk/src/config/first.php 2006-06-22 22:18:39 UTC (rev 184)
@@ -150,7 +150,7 @@
define('OPENFIRST_NO_INSTALLATION', true);
// Do form
include("../includes/globals.php");
- include($Header);
+ include($ogHeader);
// Detect default options
$basepath = substr($_SERVER["SCRIPT_NAME"], 0, -17);
@@ -348,10 +348,6 @@
<div class="center big"><button class="center big" type="submit">Set up openFIRST!</button></div>
</form>
<?php
- }
- if(is_readable("style/footers.php")) {
- include_once("style/footers.php");
- } else {
- include_once("../style/footers.php");
- }
+}
+include_once($ogFooter);
?>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|