forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: kirky on January 30, 2005, 02:30:58 am

Title: custome header error
Post by: kirky on January 30, 2005, 02:30:58 am
I tried to add my custome header like the FAQ says like this:

Code: [Select]
function pageheader($section, $meta = '')
{
   global $CONFIG, $THEME_DIR;
   global $template_header, $lang_charset, $lang_text_dir;

   if(empty($custom_header)){
      include('http://kirkyskreations.com/NEW/custom-header.php');
      static $custom_header = ob_get_contents();
      ob_clean();
   }

   header('P3P: CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"');
   user_save_profile();

   $template_vars = array(
      '{LANG_DIR}' => $lang_text_dir,
      '{TITLE}' => $CONFIG['gallery_name'].' - '.$section,
      '{CHARSET}' => $CONFIG['charset'] == 'language file' ? $lang_charset : $CONFIG['charset'],
      '{META}' => $meta,
      '{GAL_NAME}' => $CONFIG['gallery_name'],
      '{GAL_DESCRIPTION}' => $CONFIG['gallery_description'],
      '{MAIN_MENU}' => theme_main_menu(),
      '{ADMIN_MENU}' => theme_admin_mode_menu(),
      '{CUSTOM_HEADER}' => $custom_header,
   );

   echo template_eval($template_header, $template_vars);
}
// Function for writing a pagefooter

but I get this error message:

Parse error: parse error, unexpected '(', expecting ',' or ';' in /home/kirky/public_html/gallery/themes/kk_theme/theme.php on line 1612

Any suggestions on what I ma doing wrong I also included {CUSTOM_HEADER} on the template.

Kirsten  :-*
Title: Re: custome header error
Post by: Joachim Müller on January 30, 2005, 07:11:40 am
see http://forum.coppermine-gallery.net/index.php?topic=9863.msg44419#msg44419

Joachim
Title: Re: custome header error
Post by: kirky on January 30, 2005, 12:15:26 pm
OK that worked ta, I suppose that is because of the extra bit at the end which was not included on the FAQ. You know I was only changing it because I was told it looked 'mushed' but you know after all that it doesn't look any different to how I did it the first way.. suppose it is the 'correct way' to do it now.. ;)