login/edit: silence alter error for custom input
[minimedit.git] / login / edit.php
index 56451b50303fe2633c8630bdafecc5f2c7c6c177..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) {
@@ -216,9 +218,10 @@ foreach ($cols as $col => &$colconf) {
                foreach ($colconf['values'] as $tag => $val) {
                        printf(
                                "\n\t\t" .
-                               '<input type="hidden" name="tags[%1$s]" value="" />' .
-                               '<input type="checkbox" name="tags[%s]" value="1"%s%s /> %s',
-                               $tag,
+                               '<input type="hidden" name="%1$s" value="" />' .
+                               '<input type="checkbox" name="%s" value="1" id="%s"%s%s />' .
+                               '<label for="%2$s"> %s</label>',
+                               "tags[$tag]", "tag-$tag",
                                $val['value'] ? ' checked' : '',
                                isset($val['target']) ? '' : ' readonly',
                                ucfirst($tag)