Index: trunk/phase3/includes/db/Database.php |
— | — | @@ -686,8 +686,8 @@ |
687 | 687 | isset( $p['flags'] ) ? $p['flags'] : 0, |
688 | 688 | isset( $p['tablePrefix'] ) ? $p['tablePrefix'] : 'get from global' |
689 | 689 | ); |
690 | | - } elseif (class_exists($class)) { |
691 | | - return new $class($p); |
| 690 | + } elseif ( class_exists( $class ) ) { |
| 691 | + return new $class( $p ); |
692 | 692 | } else { |
693 | 693 | return null; |
694 | 694 | } |
— | — | @@ -3209,7 +3209,7 @@ |
3210 | 3210 | |
3211 | 3211 | /** |
3212 | 3212 | * Called by sourceStream() to check if we've reached a statement end |
3213 | | - * |
| 3213 | + * |
3214 | 3214 | * @param $sql String: SQL assembled so far |
3215 | 3215 | * @param $newLine String: New line about to be added to $sql |
3216 | 3216 | * @returns Bool: Whether $newLine contains end of the statement |