diff www/info.php @ 1646:2cbce82aa3c3

Use full <?php ?> tag, misc cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 08 Aug 2016 23:18:46 +0300
parents 6d620441af7f
children 9d51b4138e7d
line wrap: on
line diff
--- a/www/info.php	Mon Aug 08 19:04:25 2016 +0300
+++ b/www/info.php	Mon Aug 08 23:18:46 2016 +0300
@@ -1,4 +1,4 @@
-<?
+<?php
 require "config.inc.php";
 require "world.inc.php";
 require "common.inc.php";
@@ -8,34 +8,33 @@
 mpPrintPageHeader($pageTitle." - Wizards of the Realm");
 
 require "menu.inc.php";
-?>
-<div id="contents">
-<h1>Wizards of the Realm</h1>
 
-<div class="attnbox">
-    <b>Notice #1</b>: The area counts are not really accurate, as the database only
-    lists areas accessible from outworld. Thus areas only accessible via some
-    other fashion are not listed. Also, maintainerships of some areas are not
-    clear, and may be credited to wrong wizard(s).
-    <br />
-   
-    <b>Notice #2</b>: Not everyone who has once been immortal is listed.
-    Some purged and/or remorted wizards without known contributions are unlisted.
-    <br />
-   
-    <b>Notice #3</b>: It is certainly possible, that some of this information is
-    incorrect. Sorry for that. Please report to <? echo burl("Ggr") ?>, if you have Knowledge(tm).
-</div>
-<hr />
-<div style="text-align: center;">
- <table style="background: black;">
-  <tr>
-   <td style="background: #474">Entry has information about the wizard.</td>
-   <td style="background: #744">No wizard information entry.</td>
-  </tr>
- </table>
-</div>
-<?
+echo
+  "<div id=\"contents\">\n".
+  "<h1>Wizards of the Realm</h1>\n".
+  "<div class=\"attnbox\">\n".
+  "  <b>Notice #1</b>: The area counts are not really accurate, as the database only ".
+  "lists areas accessible from outworld. Thus areas only accessible via some ".
+  "other fashion are not listed. Also, maintainerships of some areas are not ".
+  "clear, and may be credited to wrong wizard(s).\n".
+  "  <br />\n".
+  "\n".
+  "  <b>Notice #2</b>: Not everyone who has once been immortal is listed. ".
+  "Some purged and/or remorted wizards without known contributions are unlisted.\n".
+  "  <br />\n".
+  "\n".
+  "  <b>Notice #3</b>: It is certainly possible, that some of this information is ".
+  "incorrect. Sorry for that. Please report to ".burl("Ggr").", if you have Knowledge(tm).\n".
+  "</div>\n".
+  "<hr />\n".
+  "<div style=\"text-align: center;\">\n".
+  " <table style=\"background: black;\">\n".
+  "  <tr>\n".
+  "   <td style=\"background: #474\">Entry has information about the wizard.</td>\n".
+  "   <td style=\"background: #744\">No wizard information entry.</td>\n".
+  "  </tr>\n".
+  " </table>\n".
+  "</div>\n";
 
 $locTable = apc_fetch("info_locTable");
 if (empty($locTable))