PluginProbe
WindPress – Tailwind CSS integration for WordPress / 3.2.89
WindPress – Tailwind CSS integration for WordPress v3.2.89
3.2.89 3.2.88 3.2.87 3.2.86 3.2.85 3.2.84 3.2.83 3.2.82 3.2.81 trunk 3.0.0 3.0.1 3.0.10 3.0.11 3.0.12 3.0.13 3.0.14 3.0.15 3.0.16 3.0.17 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 All 143 releases
← All changes | src/Utils/Requirement.php +1 -1 3.0.13.2.89 View file →
@@ -122,8 +122,8 @@
122 122 /* translators: 1: plugin name, 2: list of requirements */
123 123 esc_html__('The %1$s plugin minimum requirements are not met:', 'windpress'),
124 124 '<strong>' . $name . '</strong>'
125 125 );
126 - $requirements = (count($this->doesNotMeet) === 0) ? '' : ('<ul><li>' . implode('</li><li>', $this->doesNotMeet) . '</li></ul>');
126 + $requirements = count($this->doesNotMeet) === 0 ? '' : '<ul><li>' . implode('</li><li>', $this->doesNotMeet) . '</li></ul>';
127 127 printf('<div class="notice notice-error"><p>%1$s</p>%2$s</div>', wp_kses_post($notice), wp_kses_post($requirements));
128 128 }
129 129 }