Skip to content
Snippets Groups Projects

made plugin compatible with Stud.IP 5.5 and PHP 8

Merged Moritz Strohm requested to merge studip-5.5 into master
All threads resolved!
Files
4
+ 2
2
@@ -114,7 +114,7 @@ class FileController extends PluginController
PageLayout::postError(
sprintf(
dgettext('NextcloudPlugin', 'Ein Fehler trat auf beim Aktualisieren der Datei „%s“.'),
htmlReady($this->file_ref->name)
htmlReady($this->file->getFilename())
),
$this->errors
);
@@ -122,7 +122,7 @@ class FileController extends PluginController
PageLayout::postSuccess(
sprintf(
dgettext('NextcloudPlugin', 'Die Datei „%s“ wurde aktualisiert!'),
htmlReady($this->file_ref->name)
htmlReady($this->file->getFilename())
)
);
}
Loading