Don't use <?=, use <?php echo instead
authorMichael J. Rubinsky <mrubinsk@horde.org>
Fri, 23 Jan 2009 01:56:13 +0000 (20:56 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Fri, 23 Jan 2009 01:56:13 +0000 (20:56 -0500)
framework/Controller/lib/Horde/Controller/Response/Http.php

index 087a195..e267299 100644 (file)
@@ -143,9 +143,9 @@ class Horde_Controller_Response_Http extends Horde_Controller_Response_Base
         ?>
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
 <html><head>
-<title><?= $code ?></title>
+<title><?php echo $code ?></title>
 </head><body>
-<h1><?= $code ?></h1>
+<h1><?php echo $code ?></h1>
 <?php
     if ($msg != NULL)
     {