From: Liz Rea <[email protected]>

To test:
verify that the loggedin id is added when user is logged in
verify that the notloggedin id is evident when no user is logged in.

Signed-off-by: Chris Cormack <[email protected]>

Bug 7128 : Follow up, adding the id to the case when a user is not logged in

Signed-off-by: Owen Leonard <[email protected]>
---
 koha-tmpl/opac-tmpl/prog/en/modules/opac-main.tt |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-main.tt 
b/koha-tmpl/opac-tmpl/prog/en/modules/opac-main.tt
index b6219c3..7068a87 100644
--- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-main.tt
+++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-main.tt
@@ -10,18 +10,18 @@
        <div id="yui-main">
 
        <div class="yui-b">
-               [% IF ( opacuserlogin ) %]
-           [% IF ( loggedinusername ) %]
-                       <div class="yui-g">
-                       <div>
-                       [% ELSE %]
-               <div class="yui-ge">
-               <div class="yui-u first">
+     [% IF ( opacuserlogin ) %]
+        [% IF ( loggedinusername ) %]
+            <div id="loggedin" class="yui-g">
+            <div>
+        [% ELSE %]
+            <div id="notloggedin" class="yui-ge">
+            <div class="yui-u first">
+         [% END %]
+     [% ELSE %]
+         <div id="notloggedin" class="yui-g">
+        <div>
     [% END %]
-       [% ELSE %]
-               <div class="yui-g">
-               <div>
-       [% END %]
        
        [% IF ( koha_news_count ) %]
 <div id="news" class="container">
-- 
1.7.3

_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to