Multiple Ranks
Verfasst: 12.09.2006 13:00
Ich hab mir den Multiple Ranks with Staff and Online View in Memberlist Mod installiert. Wenn ich jetzt ins ACP will steht da
In der admin_ranks.php hatte ich 2 schritte weggelassen, weil die codestücke nicht existierten:
Kann mir jemand weiterhelfen?
Code: Alles auswählen
Parse error: syntax error, unexpected T_STRING in /usr/export/www/vhosts/funnetwork/hosting/modstest/admin/admin_ranks.php on line 135
In der admin_ranks.php hatte ich 2 schritte weggelassen, weil die codestücke nicht existierten:
Code: Alles auswählen
-----[ FIND ]------------------------------------------------
#
if($special_rank)
#
#-----[ REPLACE WITH ]----------------------------------------
#
// Mighty Gorgon - Multiple Ranks - BEGIN
$rank_img_sp = ( ($rank_rows[$i]['rank_image'] != "") ? ('../' . $rank_rows[$i]['rank_image']) : $images['spacer'] );
$rank .= '<br /><img name="rank_image" src="' . $rank_img_sp . '" border="0" alt="" />';
if( ($special_rank > 0) || ($special_rank == '-2') )
// Mighty Gorgon - Multiple Ranks - END
#
#-----[ FIND ]------------------------------------------------
#
"SPECIAL_RANK" => ( $special_rank == 1 ) ? $lang['Yes'] : $lang['No'],
#
#-----[ REPLACE WITH ]----------------------------------------
#
// Mighty Gorgon - Multiple Ranks - BEGIN
"SPECIAL_RANK" => ( $special_rank > 0 ) ? $lang['Yes'] : $lang['No'],
// Mighty Gorgon - Multiple Ranks - END
Kann mir jemand weiterhelfen?