Browse Source

Allow markup to work for anything other than posts

pull/40/head
Savetheinternet 13 years ago
parent
commit
83194c4218
  1. 2
      inc/functions.php

2
inc/functions.php

@ -890,7 +890,7 @@
}
// Cites
if(preg_match_all('/(^|\s)>>([0-9]+?)(\s|$)/', $body, $cites)) {
if(isset($board) && preg_match_all('/(^|\s)>>([0-9]+?)(\s|$)/', $body, $cites)) {
$previousPosition = 0;
$temp = '';
sql_open();

Loading…
Cancel
Save