From 6c92f49417ab696adde9d605ae76b0f0903be2f5 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Thu, 29 Oct 2015 14:28:50 +0100 Subject: [PATCH] Fix deprecated syntaxe warning for qw() --- templates/default/admin_audit.html.ep | 2 +- templates/default/admin_manage_rooms.html.ep | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/default/admin_audit.html.ep b/templates/default/admin_audit.html.ep index 6f9e387..a1f9b9b 100644 --- a/templates/default/admin_audit.html.ep +++ b/templates/default/admin_audit.html.ep @@ -60,7 +60,7 @@ data-toggle="tooltip" data-placement="bottom" title="<%= l('ITEM_PER_PAGE') %>"> - % foreach my $i qw(20 40 80 150 300){ + % for my $i (qw(20 40 80 150 300)){