[Koha-patches] [PATCH] Bug 8707 - tags always say approved

Owen Leonard oleonard at myacpl.org
Tue Oct 30 16:09:33 CET 2012


Template scope error caused an incorrect state on the
approval/rejection buttons when viewing rejected tags.

To test, go to Tags and view the list of rejected tags.
In the "Actions" column, the "rejected" button should be
greyed out, and the "approve" button active.
---
 .../intranet-tmpl/prog/en/modules/tags/review.tt   |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt
index 4b68e13..4569525 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt
@@ -209,7 +209,7 @@ td input,td input[type="submit"] { font-size: 85%; padding: 1px; }
 	<tr>
 	    <td class="count">[% offset + loop.count %]
 	    </td>
-        [% IF ( approved == 0 ) %]<td><span><input type="checkbox" value="[% tagloo.term %]" name="tags" class="pending" /></span>
+        [% IF ( tagloo.approved == 0 ) %]<td><span><input type="checkbox" value="[% tagloo.term %]" name="tags" class="pending" /></span>
         [% ELSE %]<td><span><input type="checkbox" value="[% tagloo.term %]" name="tags" /></span>[% END %]
 	    </td>
 	    [% IF ( tagloo.approved == -1 ) %]<td class="red">rejected
@@ -223,7 +223,7 @@ td input,td input[type="submit"] { font-size: 85%; padding: 1px; }
 	    </td>
 		[% IF ( tagloo.approved ) %]
 	    <td><span class="ajax_buttons" style="visibility:hidden">
-			[% IF ( approved == -1 ) %]
+            [% IF ( tagloo.approved == -1 ) %]
 			<input class="ok"  type="submit" title="[% tagloo.term %]" value="Approve" name="approve" />
 			<input class="rej" disabled="disabled" type="submit" title="[% tagloo.term %]" value="Rejected" name="reject" />
 			[% ELSE %]
-- 
1.7.9.5


More information about the Koha-patches mailing list