Remove more incorrect __d() calls.

This commit is contained in:
mark_story 2011-10-19 23:25:22 -04:00
parent 71a55f52f8
commit a7404e8e83
2 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@
?>
<h2><?php echo $name; ?></h2>
<p class="error">
<strong><?php echo __d('Error'); ?>: </strong>
<strong><?php echo __('Error'); ?>: </strong>
<?php printf(
__('The requested address %s was not found on this server.'),
"<strong>'{$url}'</strong>"

View file

@ -18,8 +18,8 @@
?>
<h2><?php echo $name; ?></h2>
<p class="error">
<strong><?php echo __d('Error'); ?>: </strong>
<?php echo __d('An Internal Error Has Occurred.'); ?>
<strong><?php echo __('Error'); ?>: </strong>
<?php echo __('An Internal Error Has Occurred.'); ?>
</p>
<?php
if (Configure::read('debug') > 0 ):