hab mal eine kleine Mod (meine 1.) für den Advanced Post Time Edit 1.0.0 erstellt.
Diese Mod ersetzt den Textlink durch eine kleine Grafik neben dem Quote-Button
Sieht dann so aus:


Code: Alles auswählen
#
#-----[ FIND ]--------------------------------------------------
#
$temp_url = append_sid("posting.$phpEx?mode=quote&" . POST_POST_URL . "=" . $postrow[$i]['post_id']);
$quote_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_quote'] . '" alt="' . $lang['Reply_with_quote'] . '" title="' . $lang['Reply_with_quote'] . '" border="0" /></a>';
#
#-----[ AFTER, ADD ]--------------------------------------------------
#
$edit_time_img = ($userdata['user_level'] <= 0 || $userdata['user_id'] == ANONYMOUS) ? '' : '<a href="javascript:post_time_edit('.$topic_id.', '.$post_id.')" class="postdetails"><img src="' . $images['icon_time'] . '" alt="' . $lang['Edit_post_time'] . '" title="' . $lang['Edit_post_time'] . '" border="0" /></a> ';
Code: Alles auswählen
#
#-----[ FIND ]--------------------------------------------------
#
$template->assign_block_vars('postrow', array(
#
#-----[ BEFORE, ADD ]--------------------------------------------------
#
$edit_time_img = ($userdata['user_level'] <= 0 || $userdata['user_id'] == ANONYMOUS) ? '' : '<a href="javascript:post_time_edit('.$topic_id.', '.$post_id.')" class="postdetails"><img src="' . $images['icon_time'] . '" alt="' . $lang['Edit_post_time'] . '" title="' . $lang['Edit_post_time'] . '" border="0" /></a> ';
Code: Alles auswählen
#
#-----[ FIND ]--------------------------------------------------
#
$temp_url = append_sid("posting.$phpEx?mode=quote&" . POST_POST_URL . "=" . $postrow[$i]['post_id']);
$quote_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_quote'] . '" alt="' . $lang['Reply_with_quote'] . '" title="' . $lang['Reply_with_quote'] . '" border="0" /></a>';
#
#-----[ AFTER, ADD ]--------------------------------------------------
#
$edit_time_img = ($userdata['user_level'] <= 0 || $userdata['user_id'] == ANONYMOUS) ? '' : '<a href="javascript:post_time_edit('.$topic_id.', '.$post_id.')" class="postdetails"><img src="' . $images['icon_time'] . '" alt="' . $lang['Edit_post_time'] . '" title="' . $lang['Edit_post_time'] . '" border="0" /></a> ';
Code: Alles auswählen
#
#-----[ FIND ]--------------------------------------------------
#
$template->assign_block_vars('postrow', array(
#
#-----[ BEFORE, ADD ]--------------------------------------------------
#
$edit_time_img = ($userdata['user_level'] <= 0 || $userdata['user_id'] == ANONYMOUS) ? '' : '<a href="javascript:post_time_edit('.$topic_id.', '.$post_id.')" class="postdetails"><img src="' . $images['icon_time'] . '" alt="' . $lang['Edit_post_time'] . '" title="' . $lang['Edit_post_time'] . '" border="0" /></a> ';