Update of /cvsroot/openfirst/base/includes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25865/includes
Modified Files:
Tag: REL1_1_BRANCH
globals.php
Log Message:
Fixed some checks with installation
Index: globals.php
===================================================================
RCS file: /cvsroot/openfirst/base/includes/globals.php,v
retrieving revision 1.14.2.2
retrieving revision 1.14.2.3
diff -C2 -d -r1.14.2.2 -r1.14.2.3
*** globals.php 25 Aug 2005 00:16:31 -0000 1.14.2.2
--- globals.php 25 Aug 2005 00:35:11 -0000 1.14.2.3
***************
*** 106,110 ****
// Include the functions using glob();
foreach (glob("$fbasepath/includes/functions/*.php") as $filename) {
! include_once($filename);
}
}
--- 106,110 ----
// Include the functions using glob();
foreach (glob("$fbasepath/includes/functions/*.php") as $filename) {
! // include_once($filename);
}
}
***************
*** 112,115 ****
--- 112,116 ----
$headers = "";
+ if (!defined('OPENFIRST_NO_INSTALLATION')) {
ofirst_select_db($sqldatabase, $sqlconnection);
$incl = ofirst_dbquery("SELECT * FROM ofirst_config");
***************
*** 156,160 ****
}
}
!
session_write_close();
?>
\ No newline at end of file
--- 157,161 ----
}
}
! }
session_write_close();
?>
\ No newline at end of file
|