PluginProbe
Insert PHP Code Snippet / trunk
Insert PHP Code Snippet vtrunk
1.4.7 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 trunk 1.0 1.1 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.3 All 27 releases
← All changes | shortcode-handler.php +1 -1 1.4trunk View file →
@@ -8,9 +8,9 @@
8 8
9 9 /* customization starts: Execute on demand and run now */
10 10
11 11 $table_name = $wpdb->prefix . 'xyz_ips_short_code';
12 -$snippets = $wpdb->get_results("SELECT * FROM $table_name WHERE insertionMethod = 1 AND status = 1");
12 +$snippets = $wpdb->get_results($wpdb->prepare( "SELECT * FROM {$table_name} WHERE insertionMethod = %d AND status = %d",1, 1 ));
13 13 foreach ($snippets as $snippet) {
14 14
15 15 switch ($snippet->insertionLocation) {
16 16