Mougrim

Results 3 issues of Mougrim

In file yii-user/models/User.php, line number 51: ``` php return ((get_class(Yii::app())=='CConsoleApplication' || (get_class(Yii::app())!='CConsoleApplication' && Yii::app()->getModule('user')->isAdmin()))?array( ``` change to ``` php return ((Yii::app() instanceof CConsoleApplication || (!(Yii::app() instanceof CConsoleApplication) && Yii::app()->getModule('user')->isAdmin()))?array( ```

| Q | A |-------------- | ------ | Documentation | no | Bugfix | no | BC Break | no | New Feature | yes | RFC | no |...

Awaiting Author Updates
Enhancement
Unit Test Needed

## Bug Report Please answer these questions before submitting your issue. Thanks! 1. What did you do? If possible, provide a simple script for reproducing the error. I don't have...

bug