From 7e0349164a8c8d6db6877e09f9abfc86921d68bf Mon Sep 17 00:00:00 2001 From: Matthew Barbour Date: Mon, 26 Oct 2020 10:14:36 -0500 Subject: [PATCH] Image to Post - log_db --- ext/log_db/main.php | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/log_db/main.php b/ext/log_db/main.php index c25e8bde..f290fc5a 100644 --- a/ext/log_db/main.php +++ b/ext/log_db/main.php @@ -170,6 +170,7 @@ class MessageColumn extends Column protected function scan_entities(string $line) { $line = preg_replace_callback("/Image #(\d+)/s", [$this, "link_image"], $line); + $line = preg_replace_callback("/Post #(\d+)/s", [$this, "link_image"], $line); $line = preg_replace_callback("/>>(\d+)/s", [$this, "link_image"], $line); return $line; }