fix wfn_entrylist_link

This commit is contained in:
ostertun
2023-09-04 14:25:37 +02:00
parent e5dc107a7d
commit e087e137ff
2 changed files with 3 additions and 3 deletions

View File

@@ -692,9 +692,9 @@ function extServiceGetLink(serviceName, type, eventId = '', classId = '') {
case 'm2s':
return m2s_getLink(type, eventId, classId);
case 'ro':
return ro_getLink(type, eventId);
return ro_getLink(type, eventId, classId);
case 'wfn':
return wfn_getLink(type, eventId);
return wfn_getLink(type, eventId, classId);
}
return '';
}

View File

@@ -1,5 +1,5 @@
<?php
define('PWA_VERSION', '1.12.1h3');
define('PWA_VERSION', '1.12.1h4');
?>