thyseus / yii-user-management

a user management module collection for the yii framework
186 stars 122 forks source link

Trying to get property of non-object YumFriendship.php #175

Open platix opened 10 years ago

platix commented 10 years ago

When the module Friendship is disabled and accesing to /message/message/compose it fails.

Trying to get property of non-object YumFriendship.php

the problem is in /modules/message/views/message/compose.php

on line 30 CHtml::listData(Yii::app()->user->data()->getFriends(), 'id', 'username'));

I fix it changing this line to: CHtml::listData((Yum::hasModule('membership')?Yii::app()->user->data()->getFriends():YumUser::model()->findAll()), 'id', 'username'));