Jump to content
InvisionCommunity.de - Der Deutsche Invision Community Support
Sign in to follow this  
Rocka

Fehler nach skin installation

Recommended Posts

hab nen neuen skin importiert hat alles wunderbar geklappt...

doch wenn ich die Seite nun im browser aufrufe kommt vollgender fehler

Fatal error: Call to undefined function: active_list_sep() in /srv/www/htdocs/web1/html/ibf/sources/Boards.php on line 57
so und hier noch ein kleiner auszug aus der board.php
     $ibforums->lang = $std->load_words($ibforums->lang, 'lang_boards', $ibforums->lang_id);

        

        $this->html = $std->load_template('skin_boards');

        

        $this->sep_char = trim( $this->html->active_list_sep() );

        

        if (! $ibforums->member['id'] )

        {

       	 $ibforums->input['last_visit'] = time();

weiss jemand rat?

danke

Share this post


Link to post

Öffne mal die Datei Skin/sx/skin_boards.php und suche:

function whoschatting_popup_link() {
global $ibforums;
return <<<EOF
javascript:chat_pop({$ibforums->vars['chat_width']}, {$ibforums->vars['chat_height']});
EOF;
}
Und füge darunter folgendes ein:
function active_list_sep() {
global $ibforums;
return <<<EOF
,
EOF;
}

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×