We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0996fc0 commit a008374Copy full SHA for a008374
1 file changed
library/SpamFilter/PanelSupport/Cpanel.php
@@ -1035,7 +1035,7 @@ private function listaccts($params = array())
1035
$this->_logger->debug("Search for owner '{$searchby}' account data.");
1036
$resellerResponse = $this->_api->whm_api('listaccts', array('search' => 'user', 'searchby' => $searchby));
1037
$resellerArr = $resellerResponse->getResponse('array');
1038
- $arr['acct'][] = $resellerArr['acct'][0];
+ $arr['acct'] = array_merge($arr['acct'], $resellerArr['acct']);
1039
}
1040
1041
0 commit comments