Daniel Barenkamp

Results 7 comments of Daniel Barenkamp

That would be a solution! We got a Framework plugin activated in multisite. But how can we run each plugins updater? Is there a function to add more than 1...

Fixed this issue with setting a fixed height to the parent div element. But isn't there another way? Espc. for dynamically height divs?

If possible you should set the "next" button to mark the lesson as completed. ![Bildschirmfoto 2022-05-30 um 15 20 31](https://user-images.githubusercontent.com/3169388/171000894-fa040edc-9eb2-4938-993b-1afe4660b94a.png)

Better is to change line 704 from this: `$std = isset($field['std'])? $field['std'] : array('id' => '', 'url' => '');` to this: `$std = (isset($field['std']) && !empty($field['std'])) ? $field['std'] : array('id'...

@RixNox If you set an empty string to $std then the old function does not check this. Thats what i fixed.