Subversion Repositories SvarDOS

Rev

Rev 1223 | Rev 1231 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1223 Rev 1228
Line 17... Line 17...
17
$INITYEAR = 2023;
17
$INITYEAR = 2023;
18
 
18
 
19
// parametr solny dla funkcji crypt() - istotne tylko przy generowaniu tripkodów
19
// parametr solny dla funkcji crypt() - istotne tylko przy generowaniu tripkodów
20
$TRIP_SALT = trim(file_get_contents($DATADIR . 'tripsalt.txt'));
20
$TRIP_SALT = trim(file_get_contents($DATADIR . 'tripsalt.txt'));
21
 
21
 
-
 
22
$SEARCH_API_URL = 'https://www.googleapis.com/customsearch/v1/siterestrict?key=AIzaSyCxLEZe7_LdeOBtPzs4LEbwXmr1bGERfDE&cx=8928515a857418bb5&q=';
-
 
23
 
22
$SEARCH_API_URL = '';
24
$RSS_TITLE = 'SvarDOS community forum';
23
 
25
 
24
function selfurl($params = '') {
26
function selfurl($params = '') {
25
  $r = '?p=forum';
27
  $r = 'http://svardos.org/?p=forum';
26
  if (!empty($params)) $r .= '&' . $params;
28
  if (!empty($params)) $r .= '&' . $params;
27
  return($r);
29
  return($r);
28
}
30
}
29
 
31
 
30
 
32