html bug fixed: the sentence "mod adviser enabled" must be add in the page!

svn merge -r1298:1299 from trunk


git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1300 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
nikrou 2006-05-05 20:09:51 +00:00
parent 8d4cda5620
commit ef31203f48
3 changed files with 13 additions and 13 deletions

View file

@ -208,19 +208,6 @@ include(
.'/themeconf.inc.php'
);
if (is_adviser())
{
ob_start();// buffer output so that cookies work
echo '
<div class="titrePage">
<h2>
<div style="text-align:center;">'.$lang['adviser_mode_enabled'].'
</div>
</h2>
</div>
';
}
// template instance
$template = new Template(PHPWG_ROOT_PATH.'template/'.$user['template']);
?>

View file

@ -56,6 +56,16 @@ $template->assign_vars(
'TAG_INPUT_ENABLED' => ((is_adviser()) ? 'disabled' : '')
));
if (is_adviser())
{
$template->assign_vars(
array(
'ADVISER_ENABLED' => $lang['adviser_mode_enabled']
)
);
}
// refresh
if ( isset( $refresh ) and intval($refresh) >= 0 and isset( $url_link ) and isset( $redirect_msg ) )
{

View file

@ -29,5 +29,8 @@ the "text/nonsense" prevents gecko based browsers to load it -->
<body id="{BODY_ID}">
<div id="the_page">
<div class="titrePage">
<h2 style="text-align:center">{ADVISER_ENABLED}</h2>
</div>
{PAGE_BANNER}