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 433089c commit cd896d6Copy full SHA for cd896d6
NEWS
@@ -13,7 +13,10 @@ PHP NEWS
13
(r.hampartsumyan@gmail.com, Laruence)
14
15
- DateTime:
16
- . Fixed Bug #62500 (Segfault in DateInterval class when extended). (Laruence)
+ . Fixed bug #62500 (Segfault in DateInterval class when extended). (Laruence)
17
+
18
+- PDO:
19
+ . Fixed bug #62685 (Wrong return datatype in PDO::inTransaction()). (Laruence)
20
21
- Reflection:
22
. Fixed bug #62715 (ReflectionParameter::isDefaultValueAvailable() wrong
ext/pdo/pdo_dbh.c
@@ -694,7 +694,7 @@ static PHP_METHOD(PDO, inTransaction)
694
}
695
PDO_CONSTRUCT_CHECK;
696
697
- RETURN_LONG(dbh->in_txn);
+ RETURN_BOOL(dbh->in_txn);
698
699
/* }}} */
700
0 commit comments