diff options
author | Ludovic Pouzenc <lpouzenc@gmail.com> | 2013-10-30 00:51:01 +0100 |
---|---|---|
committer | Ludovic Pouzenc <lpouzenc@gmail.com> | 2013-10-30 00:51:01 +0100 |
commit | 97bd9842f44bb25832f5dd8288372f2199cf3b7b (patch) | |
tree | 336f9affdbd5f0a617071ba6058f6872055951bc /code/admin/index.php | |
parent | 6ab5a946d9b512889d19ae041002cd78156c3ffc (diff) | |
download | editablesite-97bd9842f44bb25832f5dd8288372f2199cf3b7b.tar.gz editablesite-97bd9842f44bb25832f5dd8288372f2199cf3b7b.tar.bz2 editablesite-97bd9842f44bb25832f5dd8288372f2199cf3b7b.zip |
Correction de bugs, amélioration titres admin, traductions.
Diffstat (limited to 'code/admin/index.php')
-rw-r--r-- | code/admin/index.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/code/admin/index.php b/code/admin/index.php index ddb95b3..dc10206 100644 --- a/code/admin/index.php +++ b/code/admin/index.php @@ -8,6 +8,9 @@ // Localization Init l10n_init($site_conf['site_admin_lang']); + + // Pre-computed because used twice + $page_title = _('Admin'); ?> <!DOCTYPE html> <html> @@ -17,9 +20,10 @@ <link rel="stylesheet" href="admin.css"> <script type="text/javascript" src="microajax.minified.js"></script> <script type="text/javascript" src="admin.js"></script> -<title><?=_('Admin')?></title> +<title><?=$page_title?></title> </head> <body> +<h1><?=$page_title?></h1> <form> <fieldset> |