PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.23
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.23
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/styles/_style-card.php +1 -3 6.286.23 View file →
@@ -16,9 +16,8 @@
16 16 <?php
17 17 if ( $is_active_style ) {
18 18 FrmAppHelper::icon_by_class( 'frmfont frm_checkmark_circle_icon' );
19 19 }
20 -
21 20 if ( ! empty( $is_locked ) ) {
22 21 FrmAppHelper::icon_by_class( 'frmfont frm_lock_icon' );
23 22 }
24 23 ?>
@@ -46,11 +45,10 @@
46 45 'text-color' => $style->post_content['text_color'],
47 46 'submit-bg-color' => $style->post_content['submit_bg_color'],
48 47 );
49 48 $index = 0;
50 -
51 49 foreach ( $colors as $css_var_name => $color ) {
52 - if ( ! str_starts_with( $color, 'rgb' ) ) {
50 + if ( 0 !== strpos( $color, 'rgb' ) ) {
53 51 $color = '#' . $color;
54 52 }
55 53
56 54 $circle_params = array(