From f56739c532805d2fa0050a5379c187a3436b641b Mon Sep 17 00:00:00 2001 From: David Yell Date: Thu, 21 Aug 2014 10:38:51 +0100 Subject: [PATCH] Update missing_behavior.ctp The class needs to extend `Behavior` as that's the name of the class. --- src/Template/Error/missing_behavior.ctp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Template/Error/missing_behavior.ctp b/src/Template/Error/missing_behavior.ctp index 5617308e8d2..b7ef1ca1dc7 100644 --- a/src/Template/Error/missing_behavior.ctp +++ b/src/Template/Error/missing_behavior.ctp @@ -44,7 +44,7 @@ if (!empty($plugin) && !Plugin::loaded($plugin)) {

 <?php
-class  extends ModelBehavior {
+class  extends Behavior {
 
 }