PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.24.1
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.24.1
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-cta.php +5 -2 6.316.24.1 View file →
@@ -10,10 +10,13 @@
10 10
11 11 if ( ! defined( 'ABSPATH' ) ) {
12 12 die( 'You are not allowed to call this page directly.' );
13 13 }
14 -
15 -$button_class = str_contains( $attributes['class'], 'frm-gradient' ) ? 'frm-button-secondary' : 'frm-button-primary';
14 +if ( false === strpos( $attributes['class'], 'frm-gradient' ) ) {
15 + $button_class = 'frm-button-primary';
16 +} else {
17 + $button_class = 'frm-button-secondary';
18 +}
16 19 ?>
17 20 <div <?php FrmAppHelper::array_to_html_params( $attributes, true ); ?>>
18 21 <?php
19 22 if ( ! empty( $args['icon'] ) ) {