Skip to content

Commit

Permalink
#1259 Replace wrong index
Browse files Browse the repository at this point in the history
  • Loading branch information
Yannick committed Apr 25, 2015
1 parent aac8425 commit 45a7f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
$idlist = array_values($_POST['selected_messages']);
$idlist = array_map('intval', $idlist);
$idlist = implode(',', array_values($idlist));
$number = explode(',', $_POST['messages']);
$number = explode(',', $_POST['selected_messages']);
$number = array_map('intval', $number);
$number = count($number);

Expand Down

0 comments on commit 45a7f8c

Please sign in to comment.