Skip to content

Commit

Permalink
Fixed issue #13258: Class 'Users' not found when changing menu entry …
Browse files Browse the repository at this point in the history
…permissions
  • Loading branch information
olleharstedt committed Jan 29, 2018
1 parent b879b8a commit cb8ae13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/SurveymenuEntries.php
Expand Up @@ -71,7 +71,7 @@ public function relations()
// class name for the relations automatically generated below.
return array(
'menu' => array(self::BELONGS_TO, 'Surveymenu', 'menu_id', 'together' => true),
'user' => array(self::BELONGS_TO, 'Users', 'user_id'),
'user' => array(self::BELONGS_TO, 'User', 'user_id'),
);
}

Expand Down

0 comments on commit cb8ae13

Please sign in to comment.