You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wenn ich in Courseware 5.0.9 versuche, die Migration auszuführen, erhalte ich folgende Meldung:
$ php7.4 cli/application.php
PHP Parse error: syntax error, unexpected '$webvideo' (T_VARIABLE) in .../studip/5.2/public/plugins_packages/virtUOS/Courseware/command/MigrateCoursewareCommand.php on line 897
Parse error: syntax error, unexpected '$webvideo' (T_VARIABLE) in .../studip/5.2/public/plugins_packages/virtUOS/Courseware/command/MigrateCoursewareCommand.php on line 897
In der entsprechenden Zeile steht folgendes:
if ((!$webvideo->source || typeof $webvideo->source === "undefined") && $webvideo->src) {
Das typeof ist hier das Problem, denn wenn ich an der Stelle typeof durch empty ersetze, kann das CLI-Skript aufgerufen werden:
if (empty($webvideo->source) && $webvideo->src) {
The text was updated successfully, but these errors were encountered:
Wenn ich in Courseware 5.0.9 versuche, die Migration auszuführen, erhalte ich folgende Meldung:
In der entsprechenden Zeile steht folgendes:
Das typeof ist hier das Problem, denn wenn ich an der Stelle typeof durch empty ersetze, kann das CLI-Skript aufgerufen werden:
The text was updated successfully, but these errors were encountered: