Ignore:
Timestamp:
Dec 18, 2013 7:49:24 PM (11 years ago)
Author:
anonymous
Message:

minor changes to tests to get them working. you need to add a symbolic link to the codebase directory inside the tests directory

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eli_branch/lib/DB.inc.php

    r445 r450  
    146146
    147147        // Connect to database. Always create a new link to the server.
    148         if ($this->dbh = mysql_connect($this->getParam('db_server'), $this->getParam('db_user'), $this->getParam('db_pass'), true)) {
     148        if ($this->dbh = @mysql_connect($this->getParam('db_server'), $this->getParam('db_user'), $this->getParam('db_pass'), true)) {
    149149            // Select database
    150150            mysql_select_db($this->getParam('db_name'), $this->dbh);
Note: See TracChangeset for help on using the changeset viewer.