Add >>0 to >>OP conversion

This commit is contained in:
Robert Miles 2018-09-07 09:59:43 -04:00
parent f8d503fd0d
commit d0a8fe748e
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
echo "\t\t<div class='well' id='post{$message["post_id"]}'>".PHP_EOL;
echo "\t\t\t<p>&gt;{$message['post_id']} {$username} @ {$time}</p>".PHP_EOL;
echo "\t\t\t<pre>";
echo $message["body"].PHP_EOL;
echo str_replace(">>0",">>OP",$message["body"]).PHP_EOL;
echo "</pre>".PHP_EOL;
echo "\t\t</div>".PHP_EOL;
}