PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.7
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.7
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/models/FrmPluginSearch.php +2 -2 6.46.7 View file →
@@ -124,11 +124,11 @@
124 124 }
125 125
126 126 $addon_terms = $this->search_to_array( $addon_opts['search_terms'] . ' ' . $addon_opts['name'] );
127 127
128 - $matches = ! empty( array_intersect( $addon_terms, $normalized_term ) );
128 + $matched_terms = array_intersect( $addon_terms, $normalized_term );
129 129
130 - if ( $matches ) {
130 + if ( count( $matched_terms ) === count( $normalized_term ) ) {
131 131 $matching_addon = $addon_id;
132 132 break;
133 133 }
134 134 }