45996e7507392696f2150f5c07d21fa02bee31e1
[atutor.git] / mods / wiki / fragments / blocks / search.php
1 <?php
2
3 /*
4    Prints out a small search <form>.
5 */
6
7
8 if (true) {
9
10    $pid = defined("EWIKI_PAGE_POWERSEARCH") ? EWIKI_PAGE_POWERSEARCH : EWIKI_PAGE_SEARCH;
11
12    echo '<form action="' . url_script("", $pid)
13       . '" method="GET" accept-charset="ISO-8859-1">'
14       . '<input type="text" name="q" size="12">'
15       . '<input type="submit" value="?">'
16       . '</form>' . "\n";
17 }
18
19 ?>