ich habe eine winzigen "Fehler" im Hide-Post-Mod 1.1.1 entdeckt. Allerdings weiß ich nicht ob man es Fehler nennen kann, da ja alles funktioniert.
Hier mal die kleine Korrektur:
Code: Alles auswählen
#-----[ OPEN ]------------------------------------------
#
viewforum.php
#
#-----[ FIND ]------------------------------------------
#
if ($is_auth['auth_post'] || $is_auth['auth_mod'])
{
$temp_url = append_sid("posting.$phpEx?mode=newtopic&" . POST_FORUM_URL . "=$forum_id");
$u_post_new_topic = '<a href="'.$temp_url.'">';
$temp_image = ( $forum_row['forum_status'] == FORUM_LOCKED ) ? $images['post_locked'] : $images['post_new'];
$u_post_new_topic_image = '<img src="'.$temp_image.'" border="0" />';
$u_post_new_topic .= $u_post_new_topic_image . '</a>';
}
else
{
$u_post_new_topic = ( $forum_row['forum_status'] == FORUM_LOCKED ) ? '<img src="'.$images['post_locked'].'" border="0" />' : '';
}
#
#-----[ FIND ]------------------------------------------
#
$temp_image = ( $forum_row['forum_status'] == FORUM_LOCKED ) ? $images['post_locked'] : $images['post_new'];
#
#-----[ AFTER, ADD ]------------------------------------------
#
$u_post_alt = ( $forum_row['forum_status'] == FORUM_LOCKED ) ? $lang['Forum_locked'] : $lang['Post_new_topic'];
#
#-----[ FIND ]------------------------------------------
#
$u_post_new_topic_image = '<img src="'.$temp_image.'" border="0" />';
#
#-----[ REPLACE WITH ]------------------------------------------
#
$u_post_new_topic_image = '<img src="'.$temp_image.'" alt="'.$u_post_alt.'" title="'.$u_post_alt.'" border="0" />';
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Gruß,
Markus