mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Remove more incorrect __d() calls.
This commit is contained in:
parent
71a55f52f8
commit
a7404e8e83
2 changed files with 3 additions and 3 deletions
|
@ -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>"
|
||||
|
|
|
@ -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 ):
|
||||
|
|
Loading…
Reference in a new issue