Index: trunk/extensions/SemanticForms/includes/SF_AutoeditAPI.php |
— | — | @@ -397,8 +397,9 @@ |
398 | 398 | switch ( $type ) { |
399 | 399 | case 'checkbox': |
400 | 400 | case 'radio': |
401 | | - if ( $input->getAttribute( 'checked' ) ) |
| 401 | + if ( $input->hasAttribute( 'checked' ) ) { |
402 | 402 | self::addToArray( $data, $name, $input->getAttribute( 'value' ) ); |
| 403 | + } |
403 | 404 | break; |
404 | 405 | |
405 | 406 | // case 'button': |