Skip to content

Commit

Permalink
Update naar clientversie 0.8.4.
Browse files Browse the repository at this point in the history
Geen controle meer op api poort 80.
  • Loading branch information
Freerk committed Dec 4, 2014
1 parent 4070866 commit 06b6fad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Mplusqapiclient.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class MplusQAPIclient
{
const CLIENT_VERSION = '0.8.3';
const CLIENT_VERSION = '0.8.4';

var $MIN_API_VERSION_MAJOR = 0;
var $MIN_API_VERSION_MINOR = 8;
Expand Down Expand Up @@ -171,7 +171,7 @@ public function initClient()
if (false !== stripos($location, 'http://')) {
$require_fingerprint_check = false;
}
if (isset($this->apiPort) and ! empty($this->apiPort) and $this->apiPort != '80') {
if (isset($this->apiPort) and ! empty($this->apiPort)) {
$location .= ':'.$this->apiPort;
}
if (isset($this->apiPath) and ! empty($this->apiPath)) {
Expand Down

0 comments on commit 06b6fad

Please sign in to comment.