• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

When i try search after char

Nashalito

New Member
Joined
May 21, 2009
Messages
273
Reaction score
0
Hello when i try search after a char i get this error
Why i get that? Before i didnt get this msg

PHP:
Fatal error: Call to undefined function parseubb() in C:xampphtdocscharacters.php on line
111
This is my character php this is from line 111 and down

$comment = parseubb($player->getComment());
$newlines = array("\r\n", "\n", "\r");
$comment_with_lines = str_replace($newlines, '<br />', $comment, $count);
if($count < 50)
$comment = $comment_with_lines;
if(!empty($comment))
{
if(is_int($number_of_rows / 2)) { $bgcolor = $config['site']['darkborder']; } else { $bgcolor = $config['site']['lightborder']; } $number_of_rows++;
$main_content .= '<TR BGCOLOR="'.$bgcolor.'"><TD VALIGN=top>Comment:</TD><TD>'.$comment.'</TD></TR>';
}
}
 
Last edited:
Back
Top Bottom