Skip to content
Snippets Groups Projects
Commit 959c15f0 authored by Graham McVicker's avatar Graham McVicker
Browse files

DBConnection bug (port + driver not set by constructor) fix

parent 8ed06d52
No related branches found
No related tags found
No related merge requests found
......@@ -130,6 +130,8 @@ sub new {
$self->host( $host );
$self->dbname( $db );
$self->password( $password);
$self->port($port);
$self->driver($driver);
#be very sneaky and actually return a dbholder object which is outside
#of the circular reference loops and will cleanup after the subclass
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment