diff options
author | thomascube <thomas@roundcube.net> | 2007-08-07 21:02:12 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-08-07 21:02:12 +0000 |
commit | 6d969b4d9020560d3491d19a5b0487e325e9bce4 (patch) | |
tree | 030bc9d63bf4dc40b8bbf1cefd00e5ad6b460439 /program/include/rcube_mdb2.inc | |
parent | 93be5b7606ed7a85323732b074ce380ac06875b7 (diff) |
Documentation, code style and cleanup
Diffstat (limited to 'program/include/rcube_mdb2.inc')
-rw-r--r-- | program/include/rcube_mdb2.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/include/rcube_mdb2.inc b/program/include/rcube_mdb2.inc index 47def0302..b88a773ed 100644 --- a/program/include/rcube_mdb2.inc +++ b/program/include/rcube_mdb2.inc @@ -32,14 +32,14 @@ require_once('MDB2.php'); * * This is a wrapper for the PEAR::MDB2 class * - * @package RoundCube Webmail + * @package Database * @author David Saez Padros <david@ols.es> * @author Thomas Bruederli <roundcube@gmail.com> * @author Lukas Kahwe Smith <smith@pooteeweet.org> * @version 1.16 * @link http://pear.php.net/package/MDB2 */ -class rcube_db +class rcube_mdb2 { var $db_dsnw; // DSN for write operations var $db_dsnr; // DSN for read operations @@ -76,7 +76,7 @@ class rcube_db /** * PHP 4 object constructor * - * @see rcube_MDB2::__construct + * @see rcube_mdb2::__construct */ function rcube_db($db_dsnw,$db_dsnr='') { |