Skip to content
Snippets Groups Projects
Commit 7b6bf7a3 authored by Michael Grosse's avatar Michael Grosse
Browse files

Fix strict warnings in optgroups/dropdowns

PHP 5.6 and below throw a strict standards warning at the changed lines.
An intermediate variable is introduced to avoid this warning.

PHP 7+ changes the severity of this warning to E_NOTICE which is
suppressed by DokuWiki.

This error was introduced in #1778
parent 9c5f3115
No related branches found
No related tags found
No related merge requests found
......@@ -142,12 +142,14 @@ class DropdownElement extends InputElement {
protected function getFirstOption() {
$options = $this->options();
if (!empty($options)) {
return (string) array_shift(array_keys($options));
$keys = array_keys($options);
return (string) array_shift($keys);
}
foreach ($this->optGroups as $optGroup) {
$options = $optGroup->options();
if (!empty($options)) {
return (string) array_shift(array_keys($options));
$keys = array_keys($options);
return (string) array_shift($keys);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment