aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Miha Petkovsek <miha.petkovsek@gmail.com> 2016-08-16 17:11:34 +0200
committerGravatar GitHub <noreply@github.com> 2016-08-16 17:11:34 +0200
commit712f4f17a38e82f04b6d399ab92024fe7987aebe (patch)
tree5bdcc0b4a25a6f5201e305105d2b5a33a5017f57
parentf4251e35211288fb9fc03aff725a334204448008 (diff)
parent858cc2bfce78bb3ef6f53afbbff20494f3434b68 (diff)
downloadphpipam-api-clients-712f4f17a38e82f04b6d399ab92024fe7987aebe.tar.gz
Merge pull request #3 from ajwm/master
fix id counter in phpipam_api_client class
-rw-r--r--php-client/class.phpipam-api.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/php-client/class.phpipam-api.php b/php-client/class.phpipam-api.php
index 79f0e64..2855e28 100644
--- a/php-client/class.phpipam-api.php
+++ b/php-client/class.phpipam-api.php
@@ -547,7 +547,7 @@ class phpipam_api_client {
$this->api_server_identifiers = array();
foreach ($identifiers as $cnt=>$i) {
if($cnt==0) { $this->api_server_identifiers['id'] = $i; }
- else { $this->api_server_identifiers['id'.$i] = $i; }
+ else { $this->api_server_identifiers['id'.($cnt+1)] = $i; }
}
}