PluginProbe
OttoKit: All-in-One Automation Platform / 1.1.6
OttoKit: All-in-One Automation Platform v1.1.6
1.1.38 1.1.37 1.1.36 1.1.35 1.1.34 1.1.33 1.1.32 1.1.31 1.1.30 1.1.29 1.1.28 1.1.27 1.1.9 trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.20 All 124 releases
← All changes | src/Models/Model.php +1 -4 trunk1.1.6 View file →
@@ -193,12 +193,9 @@
193 193 * @return $this
194 194 */
195 195 public function where( $data ) {
196 196 foreach ( $data as $key => $value ) {
197 - if ( ! is_string( $key ) || ! is_string( $value ) ) {
198 - continue;
199 - }
200 - $this->where[] = 'AND `' . esc_sql( $key ) . "` = '" . esc_sql( $value ) . "'";
197 + $this->where[] = "AND {$key} = '{$value}'";
201 198 }
202 199 return $this;
203 200 }
204 201