Ich hatte die Funktion, wenn ich neben dem Posting auf den Usernamen drücke, dann schrieb sich automatisch eine Anrede in die Schnellantwortbox. Diese Box habe ich nur rausgegeben, damit ist auch diese Funktion futsch. Sie funktionierte über Java
Code: Alles auswählen
<a href="javascript:emoticon('[b]@ {postrow.POSTER_NAME}[/b] ')">
Code: Alles auswählen
if ( $mode == 'quote' )
{
$orig_word = array();
$replacement_word = array();
obtain_word_list($orig_word, $replace_word);
$msg_date = create_date($board_config['default_dateformat'], $postrow['post_time'], $board_config['board_timezone']);
// Use trim to get rid of spaces placed there by MS-SQL 2000
$quote_username = ( trim($post_info['post_username']) != '' ) ? $post_info['post_username'] : $post_info['username'];
$message = '[quote="' . $quote_username . '"]' . $message . '[/quote]' . "\n" . '[b]@ ' . $quote_username . '[/b]';