mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-5.6'
* PHP-5.6: sigh, can't even copypaste without screwing up
This commit is contained in:
commit
956fa034e3
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ MySQLPDOTest::skip();
|
|||
printf("[001] %s, [%s] %s [%s] %s\n",
|
||||
$e->getMessage(),
|
||||
(is_object($db1)) ? $db1->errorCode() : 'n/a',
|
||||
(is_object($db1)) ? implode(' ', $db1->errorInfo()) : 'n/a');
|
||||
(is_object($db1)) ? implode(' ', $db1->errorInfo()) : 'n/a',
|
||||
(is_object($db2)) ? $db2->errorCode() : 'n/a',
|
||||
(is_object($db2)) ? implode(' ', $db2->errorInfo()) : 'n/a');
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue