Seite 1 von 1

Mit Ajax-features das komplette Forum zerschossen

Verfasst: 28.01.2008 07:32
von -Zero-
Hallo,

Ich habe gestern die Ajax Features installiert, und habe damit mein Komplette Forum zerschossen. Es geht gar nichts mehr. Diese Meldung bestückt nun meinen Index:

Code: Alles auswählen

pty($board_config[$config_name])) { if($add_config) { $this->_add_config($tpl, $tpl === $this->tpl ? true : false); } return $this->style_config; } $this->style_config = $this->_unserialize($board_config[$config_name]); if($tpl === $this->tpl) { foreach($this->style_config as $var => $value) { $this->vars['TPL_CFG_' . strtoupper($var)] = $value; } } return $this->style_config; } function get_config($tpl = '', $add_config = true) { if(empty($tpl)) { if(empty($this->tpl)) { return array(); } $this->_get_config($this->tpl, $add_config); return $this->style_config; } else { $old_config = $this->style_config; $result = $this->_get_config($tpl, $add_config); $this->style_config = $old_config; return $result; } } /* * Split/merge config data. * Using this function instead of (un)serialize because it generates smaller string so it can be stored in phpbb_config */ function _serialize($array) { if(!is_array($array)) { return ''; } $str = ''; foreach($array as $var => $value) { if($str) { $str .= '|'; } $str .= $var . '=' . str_replace('|', '', $value); } return $str; } function _unserialize($str) { $array = array(); $list = explode('|', $str); for($i=0; $i_tpldata[$name.'.']) && count($tpl->_tpldata[$name.'.']) > 0); } ?>
Fatal error: Class 'Template' not found in [...]/phpbb2/includes/functions.php on line 546
Weiß jemand was ich dagegen machen kann?

Gruß
-Zero-

Verfasst: 31.01.2008 22:01
von ScriptingBase
Häng doch mal die functions.php an ;)