root/tags/1.0.2/error404.php

Revision 1624, 0.6 KB (checked in by driehle, 2 years ago)

removed svn:executable bit recursively

Line 
1<?php
2 require('.'.DIRECTORY_SEPARATOR.'personal'.DIRECTORY_SEPARATOR.'settings.inc.php');
3 $get = strip($_GET);
4
5 $meta['robots']        = "noindex, follow";
6 $c['meta']['title'] = $l['err404_topic'];
7 $c['main'] = "<h2>".$l['err404_topic']."</h2>\n<p>".$l['err404_message']."</p>";
8 $c['main'] .= '     <form id="searchform" action="'.JLOG_PATH.'/search.php">
9      <p><input class="userdata" type="text" name="q" size="30" value="'.htmlspecialchars($get['url']).'" />
10         <input class="send" type="submit" value="'.$l['content_search'].'" /></p>
11     </form>';
12
13require(JLOG_BASEPATH.'scripts'.DIRECTORY_SEPARATOR.'do_template.php');
14echo $body;
15?>
Note: See TracBrowser for help on using the browser.