diff options
author | Friendika <info@friendika.com> | 2011-03-13 19:12:46 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-13 19:12:46 -0700 |
commit | aebf9bb4d6bf2cf3e86378a369f2d51996f4f6a6 (patch) | |
tree | 34678f8a5b51e28ba1d76ade44e4694a908066fe | |
parent | 0cf647bf6f199586bad2e13973fe034bf5676eea (diff) | |
download | volse-hubzilla-aebf9bb4d6bf2cf3e86378a369f2d51996f4f6a6.tar.gz volse-hubzilla-aebf9bb4d6bf2cf3e86378a369f2d51996f4f6a6.tar.bz2 volse-hubzilla-aebf9bb4d6bf2cf3e86378a369f2d51996f4f6a6.zip |
non-code change
-rw-r--r-- | include/dba.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/dba.php b/include/dba.php index 1fdddb8a2..e2f369f19 100644 --- a/include/dba.php +++ b/include/dba.php @@ -19,6 +19,7 @@ class dba { public $connected = false; function __construct($server,$user,$pass,$db,$install = false) { + $server = trim($server); $user = trim($user); $pass = trim($pass); @@ -77,7 +78,7 @@ class dba { } else { - /* + /** * If dbfail.out exists, we will write any failed calls directly to it, * regardless of any logging that may or may nor be in effect. * These usually indicate SQL syntax errors that need to be resolved. |