PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.2
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.2
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/views/shared/admin-header.php +3 -6 6.316.2 View file →
@@ -7,9 +7,8 @@
7 7 ?>
8 8 <div id="frm_top_bar" class="<?php echo esc_attr( 'frm_nav_bar' ); ?>">
9 9 <a href="<?php echo esc_url( admin_url( 'admin.php?page=formidable' ) ); ?>" class="frm-header-logo">
10 10 <?php FrmAppHelper::show_header_logo(); ?>
11 - <span class="screen-reader-text"><?php esc_html_e( 'View Forms', 'formidable' ); ?></span>
12 11 </a>
13 12
14 13 <?php
15 14 // Add form nav
@@ -37,19 +36,17 @@
37 36 </h1>
38 37 </div>
39 38 <ul class="frm_form_nav"></ul>
40 39 <?php
41 - }//end if
40 + }
42 41
43 42 if ( isset( $atts['nav'] ) ) {
44 - FrmAppHelper::kses_echo( $atts['nav'], 'all' );
43 + echo FrmAppHelper::kses( $atts['nav'], 'all' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
45 44 }
46 45
47 46 echo '<div id="frm-publishing">';
48 -
49 47 if ( ! empty( $atts['publish'] ) || ! empty( $atts['import_link'] ) ) {
50 48 $btn_type = 'primary';
51 -
52 49 if ( isset( $atts['publish'] ) && is_array( $atts['publish'] ) ) {
53 50 call_user_func( $atts['publish'][0], $atts['publish'][1] );
54 51 $btn_type = 'secondary';
55 52 }
@@ -69,9 +66,9 @@
69 66
70 67 if ( FrmAppHelper::is_full_screen() ) {
71 68 ?>
72 69 <div class="frm-full-close">
73 - <a href="<?php echo esc_url( $atts['close'] ); ?>" aria-label="<?php esc_attr_e( 'Close', 'formidable' ); ?>">
70 + <a href="<?php echo esc_attr( $atts['close'] ); ?>" aria-label="<?php esc_attr_e( 'Close', 'formidable' ); ?>">
74 71 <?php FrmAppHelper::icon_by_class( 'frmfont frm_close_icon', array( 'aria-label' => 'Dismiss' ) ); ?>
75 72 </a>
76 73 </div>
77 74 <?php } ?>