Skip to content

Commit

Permalink
Add missing echo in MissingHelperClass error page.
Browse files Browse the repository at this point in the history
Fixes #2065
  • Loading branch information
markstory committed Oct 5, 2011
1 parent fca6fef commit d40bd24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/View/Errors/missing_helper_class.ctp
Expand Up @@ -33,7 +33,7 @@ class <?php echo $class;?> extends AppHelper {
</pre>
<p class="notice">
<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>

<?php echo $this->element('exception_stack_trace'); ?>

0 comments on commit d40bd24

Please sign in to comment.