From: Greg Sabino Mullane Date: Tue, 12 Feb 2008 21:41:40 +0000 (+0000) Subject: No longer need this cast. X-Git-Tag: 1.31.0-rc.0~49510 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=03572542a17f0d7ff00eb94c7fb27ab5faff0d94;p=lhc%2Fweb%2Fwiklou.git No longer need this cast. --- diff --git a/includes/SearchPostgres.php b/includes/SearchPostgres.php index 8dd9406195..eb1ac31c8e 100644 --- a/includes/SearchPostgres.php +++ b/includes/SearchPostgres.php @@ -158,7 +158,7 @@ class SearchPostgres extends SearchEngine { ## Redirects if (! $this->showRedirects) - $query .= ' AND page_is_redirect = 0::char'; ## IS FALSE + $query .= ' AND page_is_redirect = 0'; ## Namespaces - defaults to 0 if ( count($this->namespaces) < 1)