Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions class.growl.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,14 @@ private function setConnectionData($connection)
throw new Exception('Address Missing', 'Unable to send notification without ip address.');
}

$this->port = $connection['port'];
$this->address = $connection['address'];
$this->password = (!empty($connection['password'])) ? $connection['password'] : '';
}

private function resetConnectionData()
{
$this->port = 0;
$this->address = null;
$this->password = null;
}
Expand Down