diff options
author | nikrou <nikrou@piwigo.org> | 2006-05-05 20:07:49 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2006-05-05 20:07:49 +0000 |
commit | c32f43f225b235b4f731f8854b5c7c6724c0bbab (patch) | |
tree | 9b0c93d2c27efd7a6cc82911a6229258caa93066 | |
parent | aafda98e9724cfad15826f0de23e9cdedda76a71 (diff) |
html bug fixed: the sentence "mod adviser enabled" must be add in the page!
git-svn-id: http://piwigo.org/svn/trunk@1299 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/common.inc.php | 13 | ||||
-rw-r--r-- | include/page_header.php | 10 | ||||
-rw-r--r-- | template/yoga/header.tpl | 3 |
3 files changed, 13 insertions, 13 deletions
diff --git a/include/common.inc.php b/include/common.inc.php index 8aeafb7bf..005297d25 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -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']); ?> diff --git a/include/page_header.php b/include/page_header.php index b793c6a58..cd4e59316 100644 --- a/include/page_header.php +++ b/include/page_header.php @@ -52,6 +52,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 ) ) { diff --git a/template/yoga/header.tpl b/template/yoga/header.tpl index d432d7b63..43d63cd6a 100644 --- a/template/yoga/header.tpl +++ b/template/yoga/header.tpl @@ -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} |