login/edit: silence alter error for custom input
[minimedit.git] / login / edit.php
index e39af548a3692549213c7756215976222d35dcbf..31d4d20875de16661d71cd517701715a5a7baef2 100644 (file)
@@ -138,7 +138,9 @@ if ($_POST) {
                }
                $cols[$col]['value'] = $val;  # update form value
                if (empty($cols[$col]['target'])) {
-                       $colwarn[$col] = "Kan niet worden aangepast.";
+                       if (empty($cols[$col]['input'])) {
+                               $colwarn[$col] = "Kan niet worden aangepast.";
+                       }
                        continue;
                }
                if (file_put_contents($cols[$col]['target'], $val) === FALSE) {