QA
Dieser Commit ist enthalten in:
Ursprung
15c13fd0cd
Commit
0755afb426
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
|
@ -194,8 +194,8 @@ class Msd_Sql_Object
|
||||||
$string = substr($this->_data, $pointer, $nextHit);
|
$string = substr($this->_data, $pointer, $nextHit);
|
||||||
$string = str_replace('\\\\', '', trim($string));
|
$string = str_replace('\\\\', '', trim($string));
|
||||||
$quotes = substr_count($string, '\'');
|
$quotes = substr_count($string, '\'');
|
||||||
$escaped_quotes = substr_count($string, '\\\'');
|
$escapedQuotes = substr_count($string, '\\\'');
|
||||||
if (($quotes - $escaped_quotes) % 2 == 0) {
|
if (($quotes - $escapedQuotes) % 2 == 0) {
|
||||||
// hit was not escaped - we found the match
|
// hit was not escaped - we found the match
|
||||||
$notFound = false;
|
$notFound = false;
|
||||||
} else {
|
} else {
|
||||||
|
|
Laden …
In neuem Issue referenzieren