From 45c208a07c5ab0a96f17c7c4fd8c025f3ebbb0a7 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 30 Apr 2014 11:54:29 +0200 Subject: [PATCH] Bug 11578: FIX show inactive link Before this patch, the inactive funds were displayed by default. The active funds should be displayed by default. Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt index 6d2703c..b845d26 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt @@ -205,7 +205,7 @@ var MSG_PARENT_BENEATH_BUDGET = "- " + _("New budget-parent is beneath budget") [% UNLESS budget_period_id %] $("#hide_inactive").click(function(e){ e.preventDefault(); - oTable.fnFilter( 0, 0 ); // Hide active=0 + oTable.fnFilter( 1, 0 ); // Show only active=1 }); $("#show_inactive").click(function(e){ e.preventDefault(); -- 1.7.10.4