|
Revision 1510, 0.6 KB
(checked in by jeena, 3 years ago)
|
|
implemented Plugins and Pinbgack
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | require('.'.DIRECTORY_SEPARATOR.'personal'.DIRECTORY_SEPARATOR.'settings.inc.php'); |
|---|
| 3 | |
|---|
| 4 | $meta['robots'] = "noindex, follow"; |
|---|
| 5 | $c['meta']['title'] = $l['err404_topic']; |
|---|
| 6 | $c['main'] = "<h2>".$l['err404_topic']."</h2>\n<p>".$l['err404_message']."</p>"; |
|---|
| 7 | $c['main'] .= ' <form id="searchform" action="'.JLOG_PATH.'/search.php"> |
|---|
| 8 | <p><input class="userdata" type="text" name="q" size="30" value="'.$_GET['url'].'" /> |
|---|
| 9 | <input class="send" type="submit" value="'.$l['content_search'].'" /></p> |
|---|
| 10 | </form>'; |
|---|
| 11 | |
|---|
| 12 | require(JLOG_BASEPATH.'scripts'.DIRECTORY_SEPARATOR.'do_template.php'); |
|---|
| 13 | echo $body; |
|---|
| 14 | ?> |
|---|