Home
last modified time | relevance | path

Searched refs:quoted_post (Results 1 – 4 of 4) sorted by relevance

/dports/www/mybb/mybb-mybb_1829/inc/
H A Dfunctions_posting.php186 if(isset($quoted_post['userusername']))
188 $quoted_post['username'] = $quoted_post['userusername'];
191 $quoted_post['message'] = preg_replace(array(
196 "\\1* {$quoted_post['username']} \\2",
199 ), $quoted_post['message']);
200 $quoted_post['message'] = $parser->parse_badwords($quoted_post['message']);
212 $quoted_post = $plugins->run_hooks("parse_quoted_message", $quoted_post);
215 if(empty($quoted_post['quote_is_pm']))
217 $extra = " pid='{$quoted_post['pid']}' dateline='{$quoted_post['dateline']}'";
221 if(strpos($quoted_post['username'], '"') !== false)
[all …]
/dports/www/mybb/mybb-mybb_1829/
H A Dnewthread.php596 while($quoted_post = $db->fetch_array($query)) variable
598 if($quoted_post['userusername'])
600 $quoted_post['username'] = $quoted_post['userusername'];
602 …$quoted_post['message'] = preg_replace('#(^|\r|\n)/me ([^\r\n<]*)#i', "\\1* {$quoted_post['usernam…
603quoted_post['message'] = preg_replace('#(^|\r|\n)/slap ([^\r\n<]*)#i', "\\1* {$quoted_post['userna…
604 …$quoted_post['message'] = preg_replace("#\[attachment=([0-9]+?)\]#i", '', $quoted_post['message']);
605 …$message .= "[quote='{$quoted_post['username']}' pid='{$quoted_post['pid']}' dateline='{$quoted_po…
H A Dxmlhttp.php740 while($quoted_post = $db->fetch_array($query)) variable
743 (!is_moderator($quoted_post['fid'], "canviewunapprove") && $quoted_post['visible'] == 0) ||
744 (!is_moderator($quoted_post['fid'], "canviewdeleted") && $quoted_post['visible'] == -1) ||
745 …(in_array($quoted_post['fid'], $onlyusfids) && (!$mybb->user['uid'] || $quoted_post['thread_uid'] …
749 …if($quoted_post['visible'] == 0 && !($mybb->settings['showownunapproved'] && $quoted_post['uid'] =…
755 $message .= parse_quoted_message($quoted_post, false);
H A Dnewreply.php816 while($quoted_post = $db->fetch_array($query)) variable
819 if($quoted_post['tid'] == $tid || $load_all == 1)
822 if($replyto == $quoted_post['pid'])
824 $subject = preg_replace('#^RE:\s?#i', '', $quoted_post['subject']);
832 $message .= parse_quoted_message($quoted_post);
833 $quoted_ids[] = $quoted_post['pid'];