You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: widgets/class.widgets.php
+4-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,10 @@ public function __construct($SphinxClient, $Settings) {
18
18
*/
19
19
privatefunctionConnect() {
20
20
$this->SphinxClient->SetServer($this->Settings['Install']->Host, (int) $this->Settings['Install']->Port); //must start searchd in order to connect...or else conection will be refused
21
-
$this->SphinxClient->SetMaxQueryTime((int) $this->Settings['Admin']->MaxQueryTime); // Sets maximum search query time, in milliseconds. Default valus is 0 which means "do not limit".
21
+
if (!isset($this->Settings['Admin']->MaxQueryTime))
22
+
$this->Settings['Admin']->MaxQueryTime = 0;
23
+
else
24
+
$this->SphinxClient->SetMaxQueryTime((int) $this->Settings['Admin']->MaxQueryTime); // Sets maximum search query time, in milliseconds. Default valus is 0 which means "do not limit".
0 commit comments