|
From: John W. <jp...@us...> - 2002-04-03 23:08:48
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv6875
Modified Files:
install.php
Log Message:
Add initial users' (admin) prefs as default values
Index: install.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/install.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- install.php 3 Apr 2002 01:00:52 -0000 1.19
+++ install.php 3 Apr 2002 23:08:43 -0000 1.20
@@ -25,7 +25,9 @@
define ('INSTALL_PATH', dirname(__FILE__));
-if (!@include('Smarty.class.php')) { // Template class
+define ('SMARTY_PATH','smarty/');
+
+if (!@include(SMARTY_PATH . 'Smarty.class.php')) { // Template class
die('<br><br>
<div align="center">The Smarty templates class is not in your include path.
Without this class being available, phpBugTracker will not be able to work.
|