From 63edc5c6315ca75305d497987e2d33385d6d30d6 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 14 Jul 2013 22:28:34 +0400 Subject: do not include sphinxclient if the class already exists --- include/functions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index 3c1956ea2..cda9aeeb8 100644 --- a/include/functions.php +++ b/include/functions.php @@ -3850,7 +3850,9 @@ } function sphinx_search($query, $offset = 0, $limit = 30) { - require_once 'lib/sphinxapi.php'; + + if (!class_exists("SphinxClient")) + require_once 'lib/sphinxapi.php'; $sphinxClient = new SphinxClient(); -- cgit v1.2.3