From efdde38768c71105d56bb33b19c3fe335edea0a8 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 30 Apr 2014 11:54:29 +0200 Subject: [PATCH] Bug 11578: (follow-up) 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 Signed-off-by: Galen Charlton --- 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 6d2703c98d..b845d2625c 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(); -- 2.39.2