Skip to content

Commit

Permalink
Merge pull request #740 from okurz/fix/experimental_key_on_scalar
Browse files Browse the repository at this point in the history
Prevent experimental use of keys on scalar
  • Loading branch information
coolo committed Jun 14, 2016
2 parents 1369179 + 397a6d1 commit 101d8dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/admin/workers/index.html.ep
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</tr>
</thead>
<tbody>
% for my $workername (sort keys $workers) {
% for my $workername (sort keys %$workers) {
% my $worker = $workers->{$workername};
<tr id="worker_<%= $worker->{id} %>" >
<td class="worker">
Expand Down

0 comments on commit 101d8dc

Please sign in to comment.