Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.1', '8.2' ]
php: [ '8.2', '8.3' ]

steps:
- name: Checkout
Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All important changes to this plugin will be documented in this file.

## TODO
### Changed
- Plugin now supports Ilias 10.7

### Removed
- Plugin no longer supports Ilias 9

## [v4.0] - 2026-05-11
### Changed
- Plugin now supports Ilias 9.18
Expand Down
2 changes: 0 additions & 2 deletions classes/class.ilMumieTaskHookPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,7 @@ private function logoutFromAllServers(): void
}, ilMumieTaskServer::getAllServers());

$ctrl = $DIC->ctrl();
$ctrl->setTargetScript('logout.php');
$returnUrl = ILIAS_HTTP_PATH . '/' . $ctrl->getLinkTargetByClass([ilStartUpGUI::class], 'doLogout');
$ctrl->setTargetScript('ilias.php');

$redirectUrl = ILIAS_HTTP_PATH . '/Customizing/global/plugins/Services/EventHandling/EventHook/MumieTaskHook/prelogout.php'
. '?logoutUrl=' . urlencode(json_encode($logoutUrls))
Expand Down
4 changes: 2 additions & 2 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

// ilias min and max version; must always reflect the versions that should
// run with the plugin
$ilias_min_version = '9.0';
$ilias_max_version = '9.99';
$ilias_min_version = '10.0';
$ilias_max_version = '10.99';

// optional, but useful: Add one or more responsible persons and a contact email
$responsible = 'Tobias Goltz';
Expand Down