Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
karmicdice committed Jul 17, 2014
1 parent 867e801 commit 68aec8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Template/Error/missing_component.ctp
Expand Up @@ -24,11 +24,11 @@ $pluginDot = empty($plugin) ? null : $plugin . '.';
</p>
<p class="error">
<strong>Error: </strong>
<?= sprintf('Create the class <em>%sComponent</em> below in file: %s', h($class), (empty($plugin) ? APP_DIR : Plugin::path($plugin)) . DS . 'Controller' . DS . 'Component' . DS . h($class) . 'Component.php'); ?>
<?= sprintf('Create the class <em>%s</em> below in file: %s', h($class), (empty($plugin) ? APP_DIR : Plugin::path($plugin)) . DS . 'Controller' . DS . 'Component' . DS . h($class) . '.php'); ?>
</p>
<pre>
&lt;?php
class <?= h($class).'Component'; ?> extends Component {
class <?= h($class); ?> extends Component {

}
</pre>
Expand Down

0 comments on commit 68aec8a

Please sign in to comment.