From 7ce721ebefc13d99ff527fad26b39b7064bd2e11 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marc=20V=C3=A9ron?= Date: Mon, 25 Jan 2016 18:58:54 +0100 Subject: [PATCH] Bug 15658: Browse system logs: Add more actions to action filter list The following actions were missing in the action filter list on cgi-bin/koha/tools/viewlog.pl: 'ADDCIRCMESSAGE' 'CHANGE PASS' 'DELCIRCMESSAGE' 'RENEW' 'Run' To test: - Apply patch - Go to Tools > Logs (viewlog.pl) - Verify that the actions appear in the list 'Actions' - Verify that the new entries filter the list as appropriate (in combination with Modules: All or with a meaningful selection in list 'Modules') Note for testing: You have to set a date in 'Display from' to get results Signed-off-by: Hector Castro Logs work as advertised, translated in bug 13474 Signed-off-by: Jonathan Druart "Run" could be more explicit. Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt index fc7ab11f52..8e833553e6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt @@ -97,7 +97,7 @@ [% END %] - [% FOREACH actx IN [ 'ADD' 'DELETE' 'MODIFY' 'ISSUE' 'RETURN' 'CREATE' ] %] + [% FOREACH actx IN [ 'ADD' 'DELETE' 'MODIFY' 'ISSUE' 'RETURN' 'RENEW' 'CREATE' 'ADDCIRCMESSAGE' 'DELCIRCMESSAGE' 'CHANGE PASS' 'Run' ] %] [% IF actions.grep(actx).size %] [% ELSE %] -- 2.39.5