Bugzilla – Attachment 5172 Details for
Bug 6794
Broken toggle in member-flags in ie
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 6794 : Fixing a bug with member flags in IE
Bug-6794--Fixing-a-bug-with-member-flags-in-IE.patch (text/plain), 2.57 KB, created by
Chris Cormack
on 2011-08-26 21:11:21 UTC
(
hide
)
Description:
Bug 6794 : Fixing a bug with member flags in IE
Filename:
MIME Type:
Creator:
Chris Cormack
Created:
2011-08-26 21:11:21 UTC
Size:
2.57 KB
patch
obsolete
>From c3210cb5b6a1336503fbd6e7847431921855f914 Mon Sep 17 00:00:00 2001 >From: Maxime Pelletier <maxime.pelletier@libeo.com> >Date: Sat, 27 Aug 2011 09:09:46 +1200 >Subject: [PATCH] Bug 6794 : Fixing a bug with member flags in IE > >Rebased for template toolkit >--- > .../prog/en/modules/members/member-flags.tt | 10 ++++------ > 1 files changed, 4 insertions(+), 6 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member-flags.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/member-flags.tt >index a3d3478..32a8421 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member-flags.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/member-flags.tt >@@ -95,9 +95,9 @@ > <li> > [% END %] > [% IF ( loo.checked ) %] >- <input type="checkbox" id="flag-[% loo.bit %]" name="flag" value="[% loo.flag %]" checked="checked" onchange="toggleChildren(this)" /> >+ <input type="checkbox" id="flag-[% loo.bit %]" name="flag" value="[% loo.flag %]" checked="checked" onclick="toggleChildren(this)" /> > [% ELSE %] >- <input type="checkbox" id="flag-[% loo.bit %]" name="flag" value="[% loo.flag %]" onchange="toggleChildren(this)" /> >+ <input type="checkbox" id="flag-[% loo.bit %]" name="flag" value="[% loo.flag %]" onclick="toggleChildren(this)" /> > [% END %] > <label class="permissioncode" for="flag-[% loo.bit %]">[% loo.flag %]</label> > <span class="permissiondesc">[% loo.flagdesc %]</span> >@@ -106,11 +106,9 @@ > [% FOREACH sub_perm_loo IN loo.sub_perm_loop %] > <li> > [% IF ( sub_perm_loo.checked ) %] >- <input type="checkbox" id="[% sub_perm_loo.id %]" >- name="flag" value="[% sub_perm_loo.perm %]" checked="checked" onchange="toggleParent(this)" /> >+ <input type="checkbox" id="[% sub_perm_loo.id %]" name="flag" value="[% sub_perm_loo.perm %]" checked="checked" onclick="toggleParent(this)" /> > [% ELSE %] >- <input type="checkbox" id="[% sub_perm_loo.id %]" >- name="flag" value="[% sub_perm_loo.perm %]" onchange="toggleParent(this)" /> >+ <input type="checkbox" id="[% sub_perm_loo.id %]" name="flag" value="[% sub_perm_loo.perm %]" onclick="toggleParent(this)" /> > [% END %] > <label class="permissioncode" for="[% sub_perm_loo.id %]">[% sub_perm_loo.code %]</label> > <span class="permissiondesc">[% sub_perm_loo.description %]</span> >-- >1.7.4.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 6794
:
5171
|
5172
|
5213