From: Andrew Dolgov Date: Mon, 18 Apr 2011 09:40:17 +0000 (+0400) Subject: getSearchSql -> search_to_sql X-Git-Tag: 1.5.3~35 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=b7d1a163c6fc327806fdf9989b9de9d7a801de9f;p=tt-rss.git getSearchSql -> search_to_sql --- diff --git a/functions.php b/functions.php index 43e0e715..a1d060cc 100644 --- a/functions.php +++ b/functions.php @@ -3331,7 +3331,7 @@ return $data; } - function getSearchSql($link, $search, $match_on) { + function search_to_sql($link, $search, $match_on) { $search_query_part = ""; @@ -3386,7 +3386,7 @@ $search_query_part = "ref_id = -1 AND "; } else { - $search_query_part = getSearchSql($link, $search, $match_on); + $search_query_part = search_to_sql($link, $search, $match_on); $search_query_part .= " AND "; }