Skip to content

Commit

Permalink
attempts to fix blank page issue
Browse files Browse the repository at this point in the history
  • Loading branch information
FBartz28 authored and thojou committed Dec 12, 2024
1 parent 4945e9d commit dbeee9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/ILIAS/Test/classes/class.ilObjTestAccess.php
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ public static function _getCommands(): array
$commands = [
["permission" => "write", "cmd" => "questionsTabGateway", "lang_var" => "tst_edit_questions"],
["permission" => "write", "cmd" => "ILIAS\Test\Settings\MainSettings\SettingsMainGUI::showForm", "lang_var" => "settings"],
["permission" => "read", "cmd" => "testScreen", "lang_var" => "tst_run", "default" => true]
["permission" => "read", "cmd" => "ILIAS\Test\Presentation\TestScreenGUI::testScreen", "lang_var" => "tst_run", "default" => true]
];

return $commands;
Expand Down
2 changes: 1 addition & 1 deletion components/ILIAS/Test/classes/class.ilObjTestListGUI.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public function getCommands(): array
}
$commands = parent::getCommands();
if ($this->access->checkAccess('read', '', $this->ref_id)) {
$this->insertCommand($this->getCommandLink('testScreen'), $this->lng->txt('tst_start_test'));
$this->insertCommand($this->getCommandLink('ILIAS\Test\Presentation\TestScreenGUI::testScreen'), $this->lng->txt('tst_start_test'));
}
return $commands;
}
Expand Down

0 comments on commit dbeee9f

Please sign in to comment.