CC-5354: Remove PHP short open tags for better compatibility

This commit is contained in:
Albert Santoni 2013-10-04 14:15:23 -04:00
parent 60b4eb5c8a
commit 7b1cd5c908
34 changed files with 171 additions and 171 deletions

View file

@ -3,14 +3,14 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><? echo _("Zend Framework Default Application") ?></title>
<title><?php echo _("Zend Framework Default Application") ?></title>
</head>
<body>
<div class="error-content">
<h2><?php echo _("Page not found!")?></h2>
<p><?php echo _("Looks like the page you were looking for doesn't exist!")?></p>
<div class="button-bar">
<a class="toggle-button" href="<?php echo $this->baseUrl('dashboard/help'); ?>"><? echo _("Help") ?></a>
<a class="toggle-button" href="<?php echo $this->baseUrl('dashboard/help'); ?>"><?php echo _("Help") ?></a>
</div>
</div>
</body>