aboutsummaryrefslogtreecommitdiffstats
path: root/admin/admin.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/admin.php')
-rw-r--r--admin/admin.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/admin/admin.php b/admin/admin.php
index b803af918..66608a74d 100644
--- a/admin/admin.php
+++ b/admin/admin.php
@@ -23,9 +23,15 @@ include_once( './include/isadmin.inc.php' );
$vtp = new VTemplate;
$handle = $vtp->Open( '../template/'.$user['template'].'/admin/admin.vtp' );
// language
-$tpl = array( 'menu_title', 'title_default', 'charset' );
+$tpl = array( 'menu_title','title_default','charset','install_warning' );
templatize_array( $tpl, 'lang', $handle );
$vtp->setGlobalVar( $handle, 'user_template', $user['template'] );
+//-------------------------------------------------- install.php still exists ?
+if ( is_file( './install.php' ) )
+{
+ $vtp->addSession( $handle, 'install_warning' );
+ $vtp->closeSession( $handle, 'install_warning' );
+}
//--------------------------------------- validating page and creation of title
$page_valide = false;
$title = '';