You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Description: Bit Integrations is a platform that integrates with over 300+ different platforms to help with various tasks on your WordPress site, like WooCommerce, Form builder, Page builder, LMS, Sales funnels, Bookings, CRM, Webhooks, Email marketing, Social media and Spreadsheets, etc
7
-
* Version: 2.6.11
7
+
* Version: 2.7.0
8
8
* Author: Automation & Integration Plugin - Bit Apps
Copy file name to clipboardExpand all lines: includes/Actions/GamiPress/GamiPressController.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ public static function fetchAllAchievementType()
89
89
global$wpdb;
90
90
91
91
return$wpdb->get_results(
92
-
$wpdb->prepare("SELECT ID, post_name, post_title, post_type FROM {$wpdb->posts} WHERE post_type LIKE 'achievement-type' AND post_status = 'publish' ORDER BY post_title ASC")
92
+
$wpdb->prepare("SELECT ID, post_name, post_title, post_type FROM %1s WHERE post_type LIKE %2s AND post_status = 'publish' ORDER BY post_title ASC", $wpdb->posts, 'achievement-type')
93
93
);
94
94
}
95
95
@@ -109,7 +109,7 @@ public static function fetchAllPointType()
109
109
{
110
110
global$wpdb;
111
111
$points = $wpdb->get_results(
112
-
$wpdb->prepare("SELECT ID, post_name, post_title, post_type FROM {$wpdb->posts} WHERE post_type LIKE 'points-type' AND post_status = 'publish' ORDER BY post_title ASC")
112
+
$wpdb->prepare("SELECT ID, post_name, post_title, post_type FROM %1s WHERE post_type LIKE %2s AND post_status = 'publish' ORDER BY post_title ASC", $wpdb->posts, 'points-type')
0 commit comments