Browse Source

Update users_bulk_add.php (#144)

Added missing > closing tags for the form elements.
Stephen Forster 4 years ago
parent
commit
9d56ebff8e
1 changed files with 3 additions and 3 deletions
  1. 3 3
      users_bulk_add/users_bulk_add.php

+ 3 - 3
users_bulk_add/users_bulk_add.php

@@ -213,9 +213,9 @@ if (is_array($_FILES) && array_key_exists('users_file', $_FILES)) {
 	}
 }
 
-printf("<form method=${dq}POST${dq} action=${dq}$self${dq} enctype=${dq}multipart/form-data${dq}");
-printf("<input type=${dq}file${dq} name=${dq}users_file${dq}");
-printf("<input type=${dq}submit${dq} value=${dq}Upload${dq}");
+printf("<form method=${dq}POST${dq} action=${dq}$self${dq} enctype=${dq}multipart/form-data${dq}>");
+printf("<input type=${dq}file${dq} name=${dq}users_file${dq}>");
+printf("<input type=${dq}submit${dq} value=${dq}Upload${dq}>");
 printf("</form>");
 
 require_once "resources/footer.php";