aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2003-10-12 14:54:06 +0000
committerz0rglub <z0rglub@piwigo.org>2003-10-12 14:54:06 +0000
commitf9d7b25c235b26d05ff29d509badd0b6fbb7faa3 (patch)
tree3b47df692e38c5ecd105278f31895d2a8f35c1b0
parent6dfbb99e4ff8b085d9c2dbd4c68923612218076d (diff)
Display a message of warning if file admin/install.php is still present
after install. git-svn-id: http://piwigo.org/svn/trunk@202 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/admin.php8
-rw-r--r--language/english.php1
-rw-r--r--language/francais.php1
3 files changed, 9 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 = '';
diff --git a/language/english.php b/language/english.php
index 2587b4a58..baa8f6eac 100644
--- a/language/english.php
+++ b/language/english.php
@@ -542,5 +542,6 @@ Once this file deleted , follow this instructions :
$lang['waiting_update'] = 'Validated pictures will be displayed only once pictures database updated';
$lang['conf_upload_available_info'] = 'Authorizing the upload of pictures by users on the categories of the website (not on a remote server). This is general parameter, it is needed to authorize upload category by category, by default, no category is "uploadable".';
$lang['install_help'] = 'Need help ? Ask your question on <a href="http://forum.phpwebgallery.net">PhpWebGallery message board</a>.';
+ $lang['install_warning'] = 'The file "admin/install.php" is still present. Please remove it from your server. It is not secure to keep it.';
}
?> \ No newline at end of file
diff --git a/language/francais.php b/language/francais.php
index 1d3c555fd..c27ed1a4e 100644
--- a/language/francais.php
+++ b/language/francais.php
@@ -542,5 +542,6 @@ Un fois ce fichier supprimé, veuillez suivre ces indications :
$lang['step1_err_copy'] = 'Copiez le texte en bleu entre les tirets et collez-le dans le fichier mysql.inc.php qui se trouve dans le répertoire "include" à la base de l\'endroit où vous avez installé PhpWebGallery (le fichier mysql.inc.php ne doit comporter QUE ce qui est en bleu entre les tirets, aucun retour à la ligne ou espace n\'est autorisé)';
$lang['conf_upload_available_info'] = 'Autoriser l\'ajout d\'image par les utilisateurs dans les catégories du site (pas sur un site distant). Ceci est un paramètre général, il est nécessaire pour autoriser l\'upload catégorie par catégorie.';
$lang['install_help'] = 'Besoin d\'aide ? Posez votre question sur le <a href="http://forum.phpwebgallery.net">forum de PhpWebGallery</a>.';
+ $lang['install_warning'] = 'Le fichier "admin/install.php" est encore présent sur votre serveur. Merci de le supprimer. Il pourrait être utilisé par un tiers à des fins malveillantes.';
}
?> \ No newline at end of file