Changeset 5129
- Timestamp:
- 10/21/08 23:48:19 (9 months ago)
- Location:
- branches
- Files:
-
- 2 modified
-
1.0/lib/Doctrine/Connection.php (modified) (1 diff)
-
1.1/lib/Doctrine/Connection.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Connection.php
r5069 r5129 1074 1074 1075 1075 $exc = new $name($e->getMessage(), (int) $e->getCode()); 1076 if ( ! is _array($e->errorInfo)) {1076 if ( ! isset($e->errorInfo) || ! is_array($e->errorInfo)) { 1077 1077 $e->errorInfo = array(null, null, null, null); 1078 1078 } -
branches/1.1/lib/Doctrine/Connection.php
r5070 r5129 1064 1064 1065 1065 $exc = new $name($e->getMessage(), (int) $e->getCode()); 1066 if ( ! is _array($e->errorInfo)) {1066 if ( ! isset($e->errorInfo) || ! is_array($e->errorInfo)) { 1067 1067 $e->errorInfo = array(null, null, null, null); 1068 1068 }