Skip to content

Commit

Permalink
Merge pull request #16 from alexby/master
Browse files Browse the repository at this point in the history
fix mySenders()
  • Loading branch information
zelenin committed Feb 22, 2015
2 parents b4b67e2 + 152281b commit 84ee757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Smsru.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public function mySenders()
'senders' => $result
];
unset($response['senders'][0]);
$response['senders'] = array_values($response['my_senders']);
$response['senders'] = array_values($response['senders']);
return $response;
}

Expand Down

0 comments on commit 84ee757

Please sign in to comment.