diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-04-22 09:05:36 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-04-22 09:05:36 +0000 |
commit | de5b9a168daeef12b6f7bcf6e43b767a2d7f35d8 (patch) | |
tree | 8b0aa9828f941161183b27e74b6fdc0a167e0021 /includes/database.pear.inc | |
parent | 5b5551674d3721cee39c21dd6843700315521f91 (diff) | |
download | brdo-de5b9a168daeef12b6f7bcf6e43b767a2d7f35d8.tar.gz brdo-de5b9a168daeef12b6f7bcf6e43b767a2d7f35d8.tar.bz2 |
- bug fixes:
* fixed mails not being parsed properly.
* tracker now shows user name when you view your own recent
comments.
* link to submission queue now points to the right place.
* fixed jabber module.
* theme is now activated when changed.
- applied Gerhards coding style patch.
Diffstat (limited to 'includes/database.pear.inc')
-rw-r--r-- | includes/database.pear.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database.pear.inc b/includes/database.pear.inc index c48ffbb35..2c27d5bb3 100644 --- a/includes/database.pear.inc +++ b/includes/database.pear.inc @@ -9,7 +9,7 @@ function db_connect($url) { $db_handle = DB::connect($url); if (DB::isError($db_handle)) { - die ("Database problem: ". $db_handle->getMessage()); + die("Database problem: ". $db_handle->getMessage()); } $db_handle->setFetchMode(DB_FETCHMODE_ASSOC); |