|
From: Benjamin C. <bc...@us...> - 2003-09-05 12:14:07
|
Update of /cvsroot/phpbt/phpbt
In directory sc8-pr-cvs1:/tmp/cvs-serv18796
Modified Files:
Tag: htmltemplates
install.php
Log Message:
Switching the template calls
Index: install.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/install.php,v
retrieving revision 1.39.2.2
retrieving revision 1.39.2.3
diff -u -r1.39.2.2 -r1.39.2.3
--- install.php 5 Sep 2003 12:11:32 -0000 1.39.2.2
+++ install.php 5 Sep 2003 12:14:04 -0000 1.39.2.3
@@ -250,7 +250,7 @@
global $t, $_POST;
$t->assign('login', $_POST['admin_login']);
- $t->display('install-complete.html');
+ $t->render('install-complete.html');
}
function show_front($error = '') {
@@ -259,7 +259,7 @@
$t->assign($_POST);
$t->assign('error', $error);
$t->assign('default_email', 'phpbt@'.$HTTP_SERVER_VARS['SERVER_NAME']);
- $t->display('install.html');
+ $t->render('install.html');
}
if (isset($_POST['op'])) {
|