View | Details | Raw Unified | Return to bug 5013
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-toolbar.inc (-1 / +1 lines)
Lines 23-29 Link Here
23
23
24
		var newmenu = [
24
		var newmenu = [
25
<!--TMPL_IF Name="AddPatronLists_categorycode"-->
25
<!--TMPL_IF Name="AddPatronLists_categorycode"-->
26
<!--TMPL_LOOP Name="categoryloop"-->
26
<!--TMPL_LOOP Name="categories"-->
27
{ text: "<!--TMPL_VAR Name="description"-->",  url: "/cgi-bin/koha/members/memberentry.pl?op=add&amp;categorycode=<!--TMPL_VAR Name="categorycode"-->" },
27
{ text: "<!--TMPL_VAR Name="description"-->",  url: "/cgi-bin/koha/members/memberentry.pl?op=add&amp;categorycode=<!--TMPL_VAR Name="categorycode"-->" },
28
<!--/TMPL_LOOP-->
28
<!--/TMPL_LOOP-->
29
<!--TMPL_ELSE-->
29
<!--TMPL_ELSE-->
(-)a/members/members-home.pl (-2 / +1 lines)
Lines 54-60 if($quicksearch){ Link Here
54
my @categories=C4::Category->all;
54
my @categories=C4::Category->all;
55
$template->param(
55
$template->param(
56
    branchloop=>(defined $branch?GetBranchesLoop($branch):GetBranchesLoop()),
56
    branchloop=>(defined $branch?GetBranchesLoop($branch):GetBranchesLoop()),
57
	categoryloop=>\@categories,
57
	categories=>\@categories,
58
);
58
);
59
$template->param( 
59
$template->param( 
60
        "AddPatronLists_".C4::Context->preference("AddPatronLists")=> "1",
60
        "AddPatronLists_".C4::Context->preference("AddPatronLists")=> "1",
61
- 

Return to bug 5013