PluginProbe
Float menu – awesome floating side menu / 6.1
Float menu – awesome floating side menu v6.1
7.2.5 trunk 2.1 2.2 3.0.1 3.1 3.2.2 3.3.1 3.5 3.5.1 3.5.2 3.5.3. 3.5.4 4.0 4.1 4.1.1 4.2 4.3 4.3.1 4.3.2 5.0 5.0.1 5.0.2 5.0.3 5.1 All 57 releases
← All changes | classes/Publish/Conditions.php +3 -2 trunk6.1 View file →
@@ -28,9 +28,9 @@
28 28 'status' => self::status( $result->status ),
29 29 'mode' => self::mode( $result->mode ),
30 30 ];
31 31
32 - $check = apply_filters( WOWP_Plugin::PREFIX . '_conditions', $check, $param ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.DynamicHooknameFound
32 + $check = apply_filters(WOWP_Plugin::PREFIX . '_conditions', $check);
33 33
34 34 if ( in_array( false, $check, true ) ) {
35 35 return false;
36 36 }
@@ -46,5 +46,6 @@
46 46 private static function mode( $mode ): bool {
47 47 return empty( $mode ) || current_user_can( 'manage_options' );
48 48 }
49 49
50 -}
50 +
51 +}