From c1a9336e1bf920593e89a271688673480c42d330 Mon Sep 17 00:00:00 2001 From: Ralf Zosel Date: Sun, 25 Dec 2022 14:47:17 +0100 Subject: [PATCH] fix continue 2 --- srdb.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srdb.class.php b/srdb.class.php index ee9b392..911cf84 100644 --- a/srdb.class.php +++ b/srdb.class.php @@ -1024,17 +1024,17 @@ public function replacer( $search = '', $replace = '', $tables = array(), $exclu if ( in_array( $column, $primary_key ) ) { $where_sql[] = "`{$column}` = " . $this->db_escape( $data_to_fix ); - continue; + continue 2; } // exclude cols if ( in_array( $column, $this->exclude_cols ) ) { - continue; + continue 2; } // include cols if ( ! empty( $this->include_cols ) && ! in_array( $column, $this->include_cols ) ) { - continue; + continue 2; } // Run a search replace on the data that'll respect the serialisation.