PluginProbe
ShiftController Employee Shift Scheduling / 4.9.26
ShiftController Employee Shift Scheduling v4.9.26
4.9.97 4.9.96 4.9.95 4.9.74 4.9.75 4.9.76 4.9.77 4.9.78 4.9.84 4.9.85 4.9.87 4.9.91 4.9.92 trunk 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 3.2.4 All 38 releases
← All changes | hc3/functions.php +2 -2 trunk4.9.26 View file →
@@ -33,13 +33,13 @@
33 33 SELECT
34 34 ID, post_content
35 35 FROM $wpdb->posts
36 36 WHERE
37 - ( post_type IN ('post', 'page') )
37 + ( post_type = 'post' OR post_type = 'page' )
38 38 AND
39 39 ( post_content LIKE '%[" . $shortcode . "%]%' )
40 40 AND
41 - ( post_status IN ('publish', 'private') )
41 + ( post_status = 'publish' )
42 42 "
43 43 );
44 44
45 45 if( $pages ){