mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-24 05:01:23 +00:00
14 lines
425 B
PHP
14 lines
425 B
PHP
<?php
|
|
if ($type_of_search == "news") {
|
|
$string = $words;
|
|
include("old_news.php");
|
|
}
|
|
else {
|
|
// Preamble
|
|
$pageName = "Search Results";
|
|
$focused = "none"; // Dock icon name to gets a border
|
|
require("parts/preamble.php"); // Load most of document
|
|
echo '<P>That type of search isn\'t supported yet. Please check back later.';
|
|
require("parts/postamble.php"); // Finish this sucker up
|
|
}
|
|
?>
|