From: brion Date: Sun, 16 Aug 2009 18:41:00 +0000 (-0700) Subject: Fix for search regression introduced by rename of NOTICE_GATEWAY to Notice::Gateway... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=aedcb0199ba819b921e1dada2bc45c40792aebbf;p=quix0rs-gnu-social.git Fix for search regression introduced by rename of NOTICE_GATEWAY to Notice::Gateway in commit 5f7fb994471e4326f6aea5e29157a6236de4001f --- diff --git a/lib/search_engines.php b/lib/search_engines.php index 772f41883b..7c26363fc5 100644 --- a/lib/search_engines.php +++ b/lib/search_engines.php @@ -120,7 +120,7 @@ class MySQLSearch extends SearchEngine } else if ('identica_notices' === $this->table) { // Don't show imported notices - $this->target->whereAdd('notice.is_local != ' . NOTICE_GATEWAY); + $this->target->whereAdd('notice.is_local != ' . Notice::GATEWAY); if (strtolower($q) != $q) { $this->target->whereAdd("( MATCH(content) AGAINST ('" . addslashes($q) .