inc/toolkit.inc.php
changeset 71 e1b918eaf69a
parent 65 ce1c4d5e1576
child 74 43c31dc98305
--- a/inc/toolkit.inc.php	Tue Jan 29 21:32:48 2008 +0000
+++ b/inc/toolkit.inc.php	Sat Feb 02 15:39:04 2008 +0000
@@ -1,4 +1,4 @@
-<?
+<?php
 
 /*  PowerAdmin, a friendly web-based admin tool for PowerDNS.
  *  See <https://rejo.zenger.nl/poweradmin> for more details.
@@ -196,9 +196,9 @@
 	{
 		include_once("header.inc.php");
 	?>
-	<p><? echo _('Oops! An error occured!'); ?></p>
-	<p><? echo nl2br($msg) ?></p>
-	<?
+	<p><?php echo _('Oops! An error occured!'); ?></p>
+	<p><?php echo nl2br($msg) ?></p>
+	<?php
 		include_once("footer.inc.php");
 		die();
 	}
@@ -216,11 +216,11 @@
 {
     include_once("header.inc.php");
     ?>
-    <P><TABLE CLASS="messagetable"><TR><TD CLASS="message"><H2><? echo _('Success!'); ?></H2>
+    <P><TABLE CLASS="messagetable"><TR><TD CLASS="message"><H2><?php echo _('Success!'); ?></H2>
     <BR>
 	<FONT STYLE="font-weight: Bold">
 	<P>
-	<?
+	<?php
     if($msg)
     {
         echo nl2br($msg);
@@ -233,10 +233,10 @@
     </P>
     <BR>
     <P>
-    <a href="javascript:history.go(-1)">&lt;&lt; <? echo _('back'); ?></a></FONT>
+    <a href="javascript:history.go(-1)">&lt;&lt; <?php echo _('back'); ?></a></FONT>
     </P>
     </TD></TR></TABLE></P>
-    <?
+    <?php
     include_once("footer.inc.php");
 }