@ -23,9 +23,10 @@ class Customer extends ActiveRecord
public static function scopes()
{
$status = self::STATUS_ACTIVE;
return array(
'active' => function($q) {
'active' => function($q) use ($status){
return $q->andWhere('@.`status` = ' . self::STATUS_ACTIVE);
return $q->andWhere('@.`status` = ' . $status);
},
);
}