Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
94eeaaaa51 | ||
|
|
4a246bec5f |
@@ -1 +1 @@
|
||||
8.0.7
|
||||
8.1.0
|
||||
|
||||
@@ -892,7 +892,9 @@ class IO
|
||||
for ($i = 0, $iMax = count($keys); $i < $iMax; $i++) {
|
||||
$keys[$i] = '$' . ($keys[$i] + 1);
|
||||
// prefix data set with parameter pos
|
||||
$data[$i] = $keys[$i] . ':' . $data[$i];
|
||||
$data[$i] = $keys[$i] . ':' . ($data[$i] === null ?
|
||||
'"NULL"' : (string)$data[$i]
|
||||
);
|
||||
}
|
||||
// simply replace the $1, $2, ... with the actual data and return it
|
||||
return str_replace(
|
||||
|
||||
Reference in New Issue
Block a user