|                | 1 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 
 |  | PHP-Quelltext        <?php
 if (trim($config['welcome_eod'])!=='') {
 $welcome_text=$PARSE->parse($config['welcome_text'],1,1,1,1);
 $welcome_text_1=$PARSE->parse($config['welcome_text_1'],1,1,1,1);
 $welcome_text_2=$PARSE->parse($config['welcome_text_2'],1,1,1,1);
 $welcome_text_3=$PARSE->parse($config['welcome_text_3'],1,1,1,1);
 
 if (trim($config['welcome_title'])!='') {
 $welcome_title=$PARSE->parse($config['welcome_title'],1,1,1,1);
 eval ("\$welcome_title= \"".getTemplate("welcome_title")."\";");
 }
 
 $welcome_home_height = $config['welcome_home_height'];
 $welcome_border_color = $config['welcome_border_color'];
 $welcome_title_1 = $config['welcome_title_1'];
 $welcome_title_2 = $config['welcome_title_2'];
 $welcome_title_3 = $config['welcome_title_3'];
 $config['welcome_text_1']=$PARSE->parse($welcome_text_1['welcome_text_1'],$contentinfo['content_html'],$contentinfo['content_ubb'],$contentinfo['content_smilies'],$config['text_images']);
 $config['welcome_text_2']=$PARSE->parse($welcome_text_2['welcome_text_2'],$contentinfo['content_html'],$contentinfo['content_ubb'],$contentinfo['content_smilies'],$config['text_images']);
 $config['welcome_text_3']=$PARSE->parse($welcome_text_3['welcome_text_3'],$contentinfo['content_html'],$contentinfo['content_ubb'],$contentinfo['content_smilies'],$config['text_images']);
 
 eval ("\$site_body.= \"".getTemplate("welcome_new")."\";");
 
 }
 ?>
 |