ich hab folgendes problem:
Der Fehler tritt auf, nachdem ich den Mod simple_subforums_1.0.2b reingebastelt hab.
runtergeladen hier: http://www.phpbb.com/phpBB/viewtopic.php?t=336974
Fehlermeldung:
Parse error: syntax error, unexpected $end in "/phpBB2/search.php on line 1452
>>> bereitgestellte php.datei
was muß ich jetzt ändern?
wär toll, wenn da einer n tipp hätte

änderungen durch den mod:
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------
#
search.php
#
#-----[ FIND ]------------------------------------------
#
$sql = "SELECT c.cat_title, c.cat_id, f.forum_name, f.forum_id
#
#-----[ IN-LINE FIND ]------------------------------------------
#
f.forum_id
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
, f.forum_parent
#
#-----[ FIND ]------------------------------------------
#
$s_forums = '';
#
#-----[ AFTER, ADD ]------------------------------------------
#
$list = array();
#
#-----[ FIND ]------------------------------------------
#
if ( $is_auth_ary[$row['forum_id']]['auth_read'] )
{
#
#-----[ AFTER, ADD ]------------------------------------------
#
$list[] = $row;
}
}
for( $i = 0; $i < count($list); $i++ )
{
if( !$list[$i]['forum_parent'] )
{
$row = $list[$i];
#
#-----[ FIND ]------------------------------------------
#
if ( empty($list_cat[$row['cat_id']]) )
{
$list_cat[$row['cat_id']] = $row['cat_title'];
}
#
#-----[ AFTER, ADD ]------------------------------------------
#
$parent_id = $row['forum_id'];
for( $j = 0; $j < count($list); $j++ )
{
if( $list[$j]['forum_parent'] == $parent_id )
{
$row = $list[$j];
$s_forums .= '<option value="' . $row['forum_id'] . '">-- ' . $row['forum_name'] . '</option>';
}
}