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
4 changes: 2 additions & 2 deletions Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class OnApp_Factory extends OnApp {
*/
public function __construct( $hostname, $username, $password, $proxy = null ) {
parent::__construct();
$this->auth( $hostname, $username, $password );
$this->auth( $hostname, $username, $password, $proxy );
//todo ??? constructor should return instance instead of boolean value
//return $this->_is_auth;
}
Expand All @@ -49,4 +49,4 @@ public function factory( $name, $debug = false ) {
$result->initFields( $this->getAPIVersion() );
return $result;
}
}
}