mirror of
https://git.code.sf.net/p/quake/website
synced 2025-02-17 09:21:29 +00:00
More search stuff...
This commit is contained in:
parent
36084176c2
commit
9364377f5d
2 changed files with 9 additions and 4 deletions
|
@ -75,8 +75,9 @@
|
|||
' <OPTION value="news">News</OPTION>' .
|
||||
// ' <OPTION value="site">Site</OPTION>' .
|
||||
// ' <OPTION value="bugs">Bug Tracking</OPTION>' .
|
||||
' <OPTION value="devel">Developer Mail List</OPTION>' .
|
||||
' <OPTION value="devel">Users Mail List</OPTION>' .
|
||||
' <OPTION value="-cvs">CVS Logs</OPTION>' .
|
||||
' <OPTION value="-devel">Developer Mail List</OPTION>' .
|
||||
' <OPTION value="-users">Users Mail List</OPTION>' .
|
||||
// ' <OPTION value="patches">Patches</OPTION>' .
|
||||
' </SELECT>' .
|
||||
' <BR>' .
|
||||
|
|
|
@ -4,11 +4,15 @@
|
|||
$string = AddSlashes ($words);
|
||||
include "old_news.php";
|
||||
break;
|
||||
case "devel":
|
||||
case "-cvs":
|
||||
$string = urlencode ($words);
|
||||
header ("Location: http://www.geocrawler.com/search/?config=899&words=$string");
|
||||
break;
|
||||
case "-devel":
|
||||
$string = urlencode ($words);
|
||||
header ("Location: http://www.geocrawler.com/search/?config=856&words=$string");
|
||||
break;
|
||||
case "user":
|
||||
case "-user":
|
||||
$string = urlencode ($words);
|
||||
header ("Location: http://www.geocrawler.com/search/?config=898&words=$string");
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue