Browse Source

Add event to quote backlinks

pull/40/head
8chan 9 years ago
committed by czaks
parent
commit
6dd1420f91
  1. 4
      inc/functions.php

4
inc/functions.php

@ -1952,7 +1952,7 @@ function markup(&$body, $track_cites = false, $op = false) {
}
if (isset($cited_posts[$cite])) {
$replacement = '<a onclick="highlightReply(\''.$cite.'\');" href="' .
$replacement = '<a onclick="highlightReply(\''.$cite.'\', event);" href="' .
$config['root'] . $board['dir'] . $config['dir']['res'] .
link_for(array('id' => $cite, 'thread' => $cited_posts[$cite])) . '#' . $cite . '">' .
'&gt;&gt;' . $cite .
@ -2051,7 +2051,7 @@ function markup(&$body, $track_cites = false, $op = false) {
$replacement = '<a ' .
($_board == $board['uri'] ?
'onclick="highlightReply(\''.$cite.'\');" '
'onclick="highlightReply(\''.$cite.'\', event);" '
: '') . 'href="' . $link . '">' .
'&gt;&gt;&gt;/' . $_board . '/' . $cite .
'</a>';

Loading…
Cancel
Save