We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 309f927 commit a4a93abCopy full SHA for a4a93ab
MysqliDb.php
@@ -553,7 +553,7 @@ private function queryUnprepared($query)
553
public function rawAddPrefix($query){
554
$query = str_replace(PHP_EOL, '', $query);
555
$query = preg_replace('/\s+/', ' ', $query);
556
- preg_match_all("/(from|into|update|join|describe) [\\'\\´]?([a-zA-Z0-9_-]+)[\\'\\´]?/i", $query, $matches);
+ preg_match_all("/(from|into|update|join|describe) [\\'\\´\\`]?([a-zA-Z0-9_-]+)[\\'\\´\\`]?/i", $query, $matches);
557
list($from_table, $from, $table) = $matches;
558
559
// Check if there are matches
0 commit comments