Skip to content

Commit

Permalink
Modification de la gestion de l'hote, le protocole doit etre spécifié
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinbuntu committed May 13, 2014
1 parent 384367d commit d4eeade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JiraApi/Jira.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function __construct(array $config = array())
$this->request->username = (isset($config['username'])) ? $config['username'] : null;
$this->request->password = (isset($config['password'])) ? $config['password'] : null;
$host = (isset($config['host'])) ? $config['host'] : null;
$this->host = 'https://' . $host . '/rest/api/2/';
$this->host = $host . '/rest/api/2/';
}

public function testLogin()
Expand Down

0 comments on commit d4eeade

Please sign in to comment.