| @@ -3,9 +3,9 @@ | ||
| 3 | 3 | die( 'You are not allowed to call this page directly.' ); |
| 4 | 4 | } |
| 5 | 5 | ?> |
| 6 | 6 | <p class="howto"> |
| 7 | - <?php esc_html_e( 'Select users that are allowed access to Formidable. Without access to View Forms List, users will be unable to see the Formidable menu.', 'formidable' ); ?> | |
| 7 | + <?php esc_html_e( 'Select users that are allowed access to Formidable. Without access to View Forms, users will be unable to see the Formidable menu.', 'formidable' ); ?> | |
| 8 | 8 | </p> |
| 9 | 9 | |
| 10 | 10 | <table class="form-table"> |
| 11 | 11 | <?php |
| @@ -13,10 +13,13 @@ | ||
| 13 | 13 | $role_field_name = $frm_role . '[]'; |
| 14 | 14 | ?> |
| 15 | 15 | <tr> |
| 16 | 16 | <td class="frm_left_label"> |
| 17 | - <label id="for_<?php echo esc_attr( str_replace( '[]', '', $role_field_name ) ); ?>" for="<?php echo esc_attr( $role_field_name ); ?>"><?php echo esc_html( $frm_role_description ); ?></label> | |
| 17 | + <label id="for_<?php echo esc_attr( str_replace( '[]', '', $role_field_name ) ); ?>"><?php echo esc_html( $frm_role_description ); ?></label> | |
| 18 | 18 | </td> |
| 19 | 19 | <td><?php FrmAppHelper::wp_roles_dropdown( $role_field_name, $frm_settings->$frm_role, 'multiple' ); ?></td> |
| 20 | 20 | </tr> |
| 21 | 21 | <?php } ?> |
| 22 | 22 | </table> |
| 23 | + | |
| 24 | +<?php | |
| 25 | +FrmAppHelper::multiselect_accessibility(); | |