Skip to content
Snippets Groups Projects
Commit 8adecd6b authored by Moritz Strohm's avatar Moritz Strohm
Browse files

HomeworkFolder: use folder-edit icons instead of folder-lock icons, fixes #4691

Closes #4691

Merge request studip/studip!3591
parent bf8d6ab6
No related branches found
No related tags found
No related merge requests found
...@@ -54,8 +54,8 @@ class HomeworkFolder extends PermissionEnabledFolder ...@@ -54,8 +54,8 @@ class HomeworkFolder extends PermissionEnabledFolder
public function getIcon($role = Icon::DEFAULT_ROLE) public function getIcon($role = Icon::DEFAULT_ROLE)
{ {
$shape = $this->is_empty $shape = $this->is_empty
? 'folder-lock-empty' ? 'folder-edit-empty'
: 'folder-lock-full'; : 'folder-edit-full';
return Icon::create($shape, $role); return Icon::create($shape, $role);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment