Skip to content

Commit a73e2da

Browse files
committed
Checks if 'MaxQueryTime' is set. Defaults to 0
1 parent 03d876c commit a73e2da

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

widgets/class.widgets.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ public function __construct($SphinxClient, $Settings) {
1818
*/
1919
private function Connect() {
2020
$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".
2225
//$this->SphinxClient->SetRetries((int) $this->Settings['Admin']->RetriesCount, (int)$this->Settings['Admin']->RetriesDelay );
2326
$this->SphinxClient->SetMatchMode(SPH_MATCH_EXTENDED2); //use this since using boolean operators
2427
$this->SphinxClient->SetRankingMode(SPH_RANK_PROXIMITY_BM25);

0 commit comments

Comments
 (0)