Loading src/Plugin/migrate/source/Gauth.php +2 −2 Original line number Diff line number Diff line Loading @@ -23,8 +23,8 @@ class Gauth extends SqlBase { return $this->select('gauth_accounts', 'ga') ->fields('ga') ->condition('ga.id', 0, '>') ->condition('ga.name', Connection::escapeLike('Gauth Login ') . '%', 'NOT LIKE') ->condition('ga.name', '%' . Connection::escapeLike('|') . '%', 'NOT LIKE'); ->condition('ga.name', $this->database->escapeLike('Gauth Login ') . '%', 'NOT LIKE') ->condition('ga.name', '%' . $this->database->escapeLike('|') . '%', 'NOT LIKE'); } /** Loading Loading
src/Plugin/migrate/source/Gauth.php +2 −2 Original line number Diff line number Diff line Loading @@ -23,8 +23,8 @@ class Gauth extends SqlBase { return $this->select('gauth_accounts', 'ga') ->fields('ga') ->condition('ga.id', 0, '>') ->condition('ga.name', Connection::escapeLike('Gauth Login ') . '%', 'NOT LIKE') ->condition('ga.name', '%' . Connection::escapeLike('|') . '%', 'NOT LIKE'); ->condition('ga.name', $this->database->escapeLike('Gauth Login ') . '%', 'NOT LIKE') ->condition('ga.name', '%' . $this->database->escapeLike('|') . '%', 'NOT LIKE'); } /** Loading