summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2012-08-05 18:04:25 +0100
committerlsces <lester@lsces.co.uk>2012-08-05 18:04:25 +0100
commitfb7c3c4b8364f7ed8d69207a3514b2a621d3be4b (patch)
tree06779eb570bd79b9dcfbf613dc615c157659ce9c /install.php
parent5ab77ae58ad893bf42c0dc3480339146eb857310 (diff)
downloadinstall-fb7c3c4b8364f7ed8d69207a3514b2a621d3be4b.tar.gz
install-fb7c3c4b8364f7ed8d69207a3514b2a621d3be4b.tar.bz2
install-fb7c3c4b8364f7ed8d69207a3514b2a621d3be4b.zip
Tidier fix for strict complaince of the BitInstall class
Diffstat (limited to 'install.php')
-rw-r--r--install.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php
index ae0fdd9..2004d3d 100644
--- a/install.php
+++ b/install.php
@@ -146,7 +146,7 @@ if( !empty( $gBitDbType ) && !empty( $gBitInstaller->mPackages['users']['install
$install_file = 'login';
$gBitSmarty->assign( 'install_file', INSTALL_PKG_PATH."templates/install_".$install_file.".tpl" );
$gBitSmarty->assign( 'progress', 0 );
- $gBitSmarty->display( NULL, INSTALL_PKG_PATH.'templates/install.tpl' );
+ $gBitSmarty->display( INSTALL_PKG_PATH.'templates/install.tpl' );
die;
}
@@ -162,5 +162,5 @@ include_once( 'install_'.$install_file[$step]['file'].'.php' );
$install_file = set_menu( $install_file, $step );
$gBitSmarty->assign( 'install_file', INSTALL_PKG_PATH."templates/install_".$install_file[$step]['file'].$app.".tpl" );
-$gBitInstaller->display( $install_file[$step]['name'], INSTALL_PKG_PATH.'templates/install.tpl' );
+$gBitInstaller->in_display( $install_file[$step]['name'], INSTALL_PKG_PATH.'templates/install.tpl' );
?>