Add missing echo in MissingHelperClass error page.

Fixes #2065
This commit is contained in:
mark_story 2011-10-05 17:50:46 -04:00
parent fca6fefb4a
commit d40bd240ac

View file

@ -33,7 +33,7 @@ class <?php echo $class;?> extends AppHelper {
</pre> </pre>
<p class="notice"> <p class="notice">
<strong><?php echo __d('cake_dev', 'Notice'); ?>: </strong> <strong><?php echo __d('cake_dev', 'Notice'); ?>: </strong>
<?php __d('cake_dev', 'If you want to customize this error message, create %s', APP_DIR . DS . 'View' . DS . 'Errors' . DS . 'missing_helper_class.ctp'); ?> <?php echo __d('cake_dev', 'If you want to customize this error message, create %s', APP_DIR . DS . 'View' . DS . 'Errors' . DS . 'missing_helper_class.ctp'); ?>
</p> </p>
<?php echo $this->element('exception_stack_trace'); ?> <?php echo $this->element('exception_stack_trace'); ?>