Skip to content

Commit

Permalink
remove warning message after form submission
Browse files Browse the repository at this point in the history
Fixes #6.
  • Loading branch information
bgermann committed May 9, 2015
1 parent 89be085 commit 6a590ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib_nonajax.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
else if ( $field_type == "multiselectbox" || $field_type == "checkboxgroup"){

$all_options = $_POST[$current_field];
if ( count($all_options) > 0)
if ( !empty($all_options))
$value = stripslashes(implode(',', $all_options));
else
$value = '';
Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ GPL compliance!
== Changelog ==

= 14.9.4 =
* bugfix: remove warning message after form submission
* bugfix: set static datepicker format on forms options page
* other: remove ClockPick

Expand Down

0 comments on commit 6a590ab

Please sign in to comment.