-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefaults.php
29 lines (22 loc) · 924 Bytes
/
defaults.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
if (! isset($GLOBALS["PHORUM"]["mod_sphinx_search"])) {
$GLOBALS["PHORUM"]["mod_sphinx_search"] = array();
}
if (! isset($GLOBALS["PHORUM"]["mod_sphinx_search"]["sphinx_host"])) {
$GLOBALS["PHORUM"]["mod_sphinx_search"]["sphinx_host"] = "localhost";
}
if (! isset($GLOBALS["PHORUM"]["mod_sphinx_search"]["sphinx_port"])) {
$GLOBALS["PHORUM"]["mod_sphinx_search"]["sphinx_port"] = 3312;
}
if (! isset($GLOBALS["PHORUM"]["mod_sphinx_search"]["message_index"])) {
$GLOBALS["PHORUM"]["mod_sphinx_search"]["message_index"] =
"phorum5_msg_d phorum5_msg";
}
if (! isset($GLOBALS["PHORUM"]["mod_sphinx_search"]["author_index"])) {
$GLOBALS["PHORUM"]["mod_sphinx_search"]["author_index"] =
"phorum5_author_d phorum5_author";
}
if (! isset($GLOBALS["PHORUM"]["mod_sphinx_search"]["max_search_results"])) {
$GLOBALS["PHORUM"]["mod_sphinx_search"]["max_search_results"] = 1000;
}
?>