aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/institute
diff options
context:
space:
mode:
authorRasmus Fuhse <fuhse@data-quest.de>2022-08-20 19:09:44 +0000
committerDavid Siegfried <david.siegfried@uni-vechta.de>2022-08-20 19:09:44 +0000
commit8b7a902269a1a20a6a5ddec387913753d01999ea (patch)
tree3ccba1ecb515177a67826e44daee85fad71ad7ff /app/controllers/institute
parent16c6c03dc7e6af883f758747969077df3dd927da (diff)
Resolve "Icons mit Zusätze ersetzen durch Icons ohne Zusätze"
Closes #1463 Merge request studip/studip!913
Diffstat (limited to 'app/controllers/institute')
-rw-r--r--app/controllers/institute/files.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/institute/files.php b/app/controllers/institute/files.php
index 8ff697b..9f2cdd5 100644
--- a/app/controllers/institute/files.php
+++ b/app/controllers/institute/files.php
@@ -67,14 +67,14 @@ class Institute_FilesController extends AuthenticatedController
URLHelper::getUrl(
'dispatch.php/file/new_folder/' . $this->topFolder ->getId()
),
- Icon::create('folder-empty+add', 'clickable')
+ Icon::create('folder-empty', 'clickable')
)->asDialog();
}
if ($this->topFolder && $this->topFolder->isWritable($GLOBALS['user']->id)) {
$actions->addLink(
_('Dokument hinzufügen'),
'#',
- Icon::create('file+add', 'clickable'),
+ Icon::create('add', 'clickable'),
['onclick' => "STUDIP.Files.openAddFilesWindow(); return false;"]
);
}