Konfiguration Issue: "source_pretext" will not be saved
-
Changes on “source_pretext” in the configuration section wont be saved.
I assume the problem lies in the file /admin/admin.php, in line 911:
if (!isset($input['source_pretext'])) { $output['source_pretext'] = esc_textarea($input['source_pretext']); }
should be:
if (isset($input['source_pretext'])) {
(idk if the condition is rly needed here..)or it never will be written in the $output-array
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Konfiguration Issue: "source_pretext" will not be saved’ is closed to new replies.