diff options
| author | lsces <lester@lsces.co.uk> | 2012-08-05 00:23:59 +0100 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2012-08-05 00:23:59 +0100 |
| commit | 5ab77ae58ad893bf42c0dc3480339146eb857310 (patch) | |
| tree | cc8408f41de27f39aec5f42876efe528bf646c68 /install.php | |
| parent | a47333fc0d81b03d67b5e715adc1cdca04117e51 (diff) | |
| download | install-5ab77ae58ad893bf42c0dc3480339146eb857310.tar.gz install-5ab77ae58ad893bf42c0dc3480339146eb857310.tar.bz2 install-5ab77ae58ad893bf42c0dc3480339146eb857310.zip | |
display has to match base class format
Diffstat (limited to 'install.php')
| -rw-r--r-- | install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php index d8cca5b..ae0fdd9 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( INSTALL_PKG_PATH.'templates/install.tpl' ); + $gBitSmarty->display( NULL, 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_PKG_PATH.'templates/install.tpl', $install_file[$step]['name'] ); +$gBitInstaller->display( $install_file[$step]['name'], INSTALL_PKG_PATH.'templates/install.tpl' ); ?> |
