mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-18 18:46:17 +00:00
Adding fix for #1822
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4378 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
450a95f4a1
commit
96f8227255
1 changed files with 5 additions and 1 deletions
|
@ -266,7 +266,11 @@ class DboMssql extends DboSource {
|
|||
$data = $this->boolean((bool)$data);
|
||||
break;
|
||||
default:
|
||||
$data = stripslashes(r("'", "''", $data));
|
||||
if (get_magic_quotes_gpc()) {
|
||||
$data = stripslashes(r("'", "''", $data));
|
||||
} else {
|
||||
$data = r("'", "''", $data);
|
||||
}
|
||||
break;
|
||||
}
|
||||
return "'" . $data . "'";
|
||||
|
|
Loading…
Add table
Reference in a new issue