fix wrong escaping of backslash in class-names when updating cronjobs_run table; add missing validateFormField-method for type 'image' (needs to be present but image-validation is handled elsewhere

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2023-12-05 11:16:41 +01:00
parent 02ae52e3df
commit 82dc76fdc6
2 changed files with 11 additions and 2 deletions

View File

@@ -265,4 +265,10 @@ class Data
return $returnvalue;
}
public static function validateFormFieldImage($fieldname, $fielddata, $newfieldvalue)
{
// validation is handled in \Froxlor\Settings\Store::storeSettingImage()
return true;
}
}