summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-04-18 13:40:17 +0400
committerAndrew Dolgov <[email protected]>2011-04-18 13:40:17 +0400
commitb7d1a163c6fc327806fdf9989b9de9d7a801de9f (patch)
tree06a082e699a10e541c77e76b4e60a7c9314077cd /functions.php
parent85ebaa7aabcbc467568fab8e0b38e05d46f39cbc (diff)
getSearchSql -> search_to_sql
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index 43e0e715c..a1d060cc8 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 ";
}