PluginProbe
Adminify – White Label, Admin Menu Editor, Login Customizer / 4.0.3.7
Adminify – White Label, Admin Menu Editor, Login Customizer v4.0.3.7
4.3.1 4.3.0 4.2.26 4.2.25 4.2.24 4.2.23 4.2.22 4.2.21 4.2.20 4.2.19 4.2.18 4.2.17 4.2.16 4.2.15 4.2.14 4.2.13 4.2.12 4.2.11 4.2.10 4.2.9 4.2.8 4.2.7 4.2.6 4.2.5 4.1.17 All 164 releases
← All changes | Libs/adminify-framework/fields/backup/backup.php +3 -3 4.2.214.0.3.7 View file →
@@ -19,19 +19,19 @@
19 19 $unique = $this->unique;
20 20 $nonce = wp_create_nonce( 'adminify_backup_nonce' );
21 21 $export = add_query_arg( array( 'action' => 'adminify-export', 'unique' => $unique, 'nonce' => $nonce ), admin_url( 'admin-ajax.php' ) );
22 22
23 - echo wp_kses_post( $this->field_before() );
23 + echo $this->field_before();
24 24
25 25 echo '<textarea name="adminify_import_data" class="adminify-import-data"></textarea>';
26 26 echo '<button type="submit" class="button button-primary adminify-confirm adminify-import" data-unique="'. esc_attr( $unique ) .'" data-nonce="'. esc_attr( $nonce ) .'">'. esc_html__( 'Import', 'adminify' ) .'</button>';
27 27 echo '<hr />';
28 - echo '<textarea readonly="readonly" class="adminify-export-data">'. esc_attr( wp_json_encode( get_option( $unique ) ) ) .'</textarea>';
28 + echo '<textarea readonly="readonly" class="adminify-export-data">'. esc_attr( json_encode( get_option( $unique ) ) ) .'</textarea>';
29 29 echo '<a href="'. esc_url( $export ) .'" class="button button-primary adminify-export" target="_blank">'. esc_html__( 'Export & Download', 'adminify' ) .'</a>';
30 30 echo '<hr />';
31 31 echo '<button type="submit" name="adminify_transient[reset]" value="reset" class="button adminify-warning-primary adminify-confirm adminify-reset" data-unique="'. esc_attr( $unique ) .'" data-nonce="'. esc_attr( $nonce ) .'">'. esc_html__( 'Reset', 'adminify' ) .'</button>';
32 32
33 - echo wp_kses_post( $this->field_after() );
33 + echo $this->field_after();
34 34
35 35 }
36 36
37 37 }