Skip to content

Commit 22cd907

Browse files
author
Matt Dees
committedMar 17, 2011
Resolve issue in unpark method making it unusuable
1 parent be5d7c6 commit 22cd907

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎xmlapi.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
*
3535
* Changes
3636
*
37+
* 1.0.8:
38+
* correct unpark bug as reported by Randall Kent
39+
*
3740
* 1.0.7:
3841
* Corrected typo for setrellerlimits where xml_query incorrectly called xml-api's setresellerips
3942
*
@@ -2117,7 +2120,7 @@ public function unpark($username, $domain) {
21172120
return false;
21182121
}
21192122
$args['domain'] = $domain;
2120-
return $this->api1_query($username, 'Park', 'unpark', $args);
2123+
return $this->api2_query($username, 'Park', 'unpark', $args);
21212124
}
21222125

21232126
####

0 commit comments

Comments
 (0)
Please sign in to comment.