fix stringToArray()

This commit is contained in:
Uwe Steinmann 2025-02-03 09:52:39 +01:00
parent 325498e63a
commit ab729a3f21

View File

@ -452,7 +452,7 @@ class Settings { /* {{{ */
*
*/
function stringToArray($value) { /* {{{ */
return explode(";", $Value);
return explode(";", $value);
} /* }}} */
/**