koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha circ/circulation.pl koha-tmpl/intranet-tmp... [rel_3_0]


From: paul poulain
Subject: [Koha-cvs] koha circ/circulation.pl koha-tmpl/intranet-tmp... [rel_3_0]
Date: Wed, 31 Jan 2007 15:23:50 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         rel_3_0
Changes by:     paul poulain <tipaul>   07/01/31 15:23:50

Modified files:
        circ           : circulation.pl 
        koha-tmpl/intranet-tmpl/prog/en/circ: circulation.tmpl 
                                              returns.tmpl 
        koha-tmpl/intranet-tmpl/prog/en/members: moremember.tmpl 

Log message:
        - reintroduce NotifyBorrowerDeparture systempreferences
        - formating dates correctly
        - moremember/circ/returns tables now have the same column order, it's 
more logic

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/circ/circulation.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.97.2.20&r2=1.97.2.21
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/circ/circulation.tmpl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.6.2.20&r2=1.6.2.21
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/circ/returns.tmpl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.4.2.11&r2=1.4.2.12
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/members/moremember.tmpl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.12.2.27&r2=1.12.2.28

Patches:
Index: circ/circulation.pl
===================================================================
RCS file: /sources/koha/koha/circ/circulation.pl,v
retrieving revision 1.97.2.20
retrieving revision 1.97.2.21
diff -u -b -r1.97.2.20 -r1.97.2.21
--- circ/circulation.pl 29 Jan 2007 16:30:15 -0000      1.97.2.20
+++ circ/circulation.pl 31 Jan 2007 15:23:49 -0000      1.97.2.21
@@ -36,6 +36,7 @@
   Today
   Today_and_Now
   Add_Delta_YM
+  Add_Delta_Days
   Date_to_Days
 );
 
@@ -181,7 +182,6 @@
     my ( $renew_year, $renew_month, $renew_day ) =
       Add_Delta_YM( $today_year, $today_month, $today_day,
         $borrower->{'enrolmentperiod'}, 0 );
-
     # if the expiry date is before today
     if ( Date_to_Days( $today_year, $today_month, $today_day ) >
         Date_to_Days( $warning_year, $warning_month, $warning_day ) )
@@ -194,6 +194,11 @@
             renewaldate   => "$renew_year-$renew_month-$renew_day"
         );
     }
+    # check for NotifyBorrowerDeparture
+       if 
(Date_to_Days(Add_Delta_Days($warning_year,$warning_month,$warning_day,C4::Context->preference('NotifyBorrowerDeparture')))
 >
+             Date_to_Days( $today_year, $today_month, $today_day ) ) {
+             $template->param("warndeparture" => 1);
+        }
     $template->param(
         overduecount => $od,
         issuecount   => $issue,
@@ -469,8 +474,8 @@
             $togglecolor = 1;
         }
         $book->{'togglecolor'} = $togglecolor;
-        $book->{'od'}          = $od;
-        $book->{'dd'}          = $dd;
+        $book->{'od'}          = format_date($od);
+        $book->{'dd'}          = format_date($dd);
         if ( $book->{'author'} eq '' ) {
             $book->{'author'} = ' ';
         }
@@ -487,8 +492,8 @@
         # ADDED BY JF: NEW ITEMTYPE COUNT DISPLAY
         $issued_itemtypes_count->{ $book->{'itemtype'} }++;
 
-        my $dd      = $book->{'date_due'};
-        my $datedue = $book->{'date_due'};
+        my $dd      = format_date($book->{'date_due'});
+        my $datedue = format_date($book->{'date_due'});
 
         #$dd=format_date($dd);
         my $pcolor = '';

Index: koha-tmpl/intranet-tmpl/prog/en/circ/circulation.tmpl
===================================================================
RCS file: 
/sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/circ/circulation.tmpl,v
retrieving revision 1.6.2.20
retrieving revision 1.6.2.21
diff -u -b -r1.6.2.20 -r1.6.2.21
--- koha-tmpl/intranet-tmpl/prog/en/circ/circulation.tmpl       25 Jan 2007 
17:39:58 -0000      1.6.2.20
+++ koha-tmpl/intranet-tmpl/prog/en/circ/circulation.tmpl       31 Jan 2007 
15:23:49 -0000      1.6.2.21
@@ -19,13 +19,14 @@
 
 <!-- TMPL_IF NAME="borrowernumber" -->
 
-  <div id="BorrowerDetails">
+<div id="BorrowerDetails">
         <fieldset>
             <legend><!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR 
name="surname" -->
             </legend>
             <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- 
TMPL_VAR name="borrowernumber" -->">details</a>
                 / <a 
href="/cgi-bin/koha/members/memberentry.pl?borrowernumber=<!-- TMPL_VAR 
name="borrowernumber" 
-->&amp;modify=edit&amp;destination=circ&categorycode=<!-- TMPL_VAR 
name="categorycode" -->">edit</a>
         <p>
+        <!--TMPL_IF Name="warndeparture"--><p class="problem"> Patron will 
leave soon</p><!--/TMPL_IF-->
         <!-- TMPL_IF NAME="streetaddress"-->
             <!-- TMPL_VAR NAME="streetaddress" -->,
         <!-- TMPL_ELSE -->
@@ -36,7 +37,7 @@
         <!-- TMPL_ELSE -->
             No city stored.
         <!-- /TMPL_IF -->
-   <!--TMPL_IF NAME="phone" -->
+<!--TMPL_IF NAME="phone" -->
                <!-- TMPL_VAR NAME="phone" -->
        <!-- TMPL_ELSE -->
                <span class="problem">No phone stored.</span>
@@ -102,12 +103,13 @@
         </fieldset>
     <!-- /TMPL_IF --> <!-- flagged -->
 
-  <!-- TMPL_ELSE --> <!-- borrowernumber -->
+</div> <!-- id=BorrowerDetails -->
+<!-- TMPL_ELSE --> <!-- borrowernumber -->
 
 <!-- TMPL_UNLESS NAME="CGIselectborrower"-->
 <!-- No card entered yet -->
 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" name="mainform" 
id="mainform">
-  <fieldset id="circ_circulation_borrower_search">
+<fieldset id="circ_circulation_borrower_search">
     <legend>Search a borrower</legend>
   
     <p>
@@ -118,57 +120,56 @@
     <input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->" 
/>
     <input type="hidden" name="printer" value="<!-- TMPL_VAR NAME="printer" 
-->" />
     <input type="submit" value="Submit" />
-  </fieldset>
+</fieldset>
 </form>
 <!-- /TMPL_UNLESS -->
 <!-- /TMPL_IF --> <!-- borrowernumber -->
-</div> <!-- id=BorrowerDetails -->
 
 <!-- TMPL_IF NAME="NEEDSCONFIRMATION" -->
 <fieldset id="circ_circulation_needsconfirmation">
-  <legend>Please Confirm Issue</legend>
+<legend>Please Confirm Issue</legend>
 
-  <ul>
-  <!-- TMPL_IF NAME="DEBT" -->
+<ul>
+<!-- TMPL_IF NAME="DEBT" -->
     <li>The patron has a debt of $<!-- TMPL_VAR name="DEBT" --></li>
-  <!-- /TMPL_IF -->
+<!-- /TMPL_IF -->
 
-  <!-- TMPL_IF NAME="RENEW_ISSUE" -->
+<!-- TMPL_IF NAME="RENEW_ISSUE" -->
     <li>Item is currently issued to this patron.  Renew?</li>
-  <!-- /TMPL_IF -->
+<!-- /TMPL_IF -->
 
-  <!-- TMPL_IF NAME="RESERVE_WAITING" -->
+<!-- TMPL_IF NAME="RESERVE_WAITING" -->
     <li>Item is consigned for <!-- TMPL_VAR NAME="RESERVE_WAITING" --></li>
-  <!-- /TMPL_IF -->
+<!-- /TMPL_IF -->
 
-  <!-- TMPL_IF NAME="RESERVED" -->
+<!-- TMPL_IF NAME="RESERVED" -->
     <li>Item is on reserve for <!-- TMPL_VAR NAME="RESERVED" --></li>
-  <!-- /TMPL_IF -->
+<!-- /TMPL_IF -->
 
-  <!-- TMPL_IF NAME="ISSUED_TO_ANOTHER" -->
+<!-- TMPL_IF NAME="ISSUED_TO_ANOTHER" -->
     <li>Item ( <!-- TMPL_VAR NAME="getTitleMessageIteminfo" --> ) issued to 
<!-- TMPL_VAR NAME="ISSUED_TO_ANOTHER" -->. Return and issue?</li>
-  <!-- /TMPL_IF -->
+<!-- /TMPL_IF -->
 
-  <!-- TMPL_IF NAME="TOO_MANY" -->
+<!-- TMPL_IF NAME="TOO_MANY" -->
     <li>Too many issues (already issued / max : <!-- TMPL_VAR name="TOO_MANY" 
-->)</li>
-  <!-- /TMPL_IF -->
-  </ul>
+<!-- /TMPL_IF -->
+</ul>
 
-  <form method="post" action="/cgi-bin/koha/circ/circulation.pl">
+<form method="post" action="/cgi-bin/koha/circ/circulation.pl">
     
-  <!-- TMPL_IF NAME="RESERVED" -->
+<!-- TMPL_IF NAME="RESERVED" -->
     <p>
       <input type="checkbox" id="cancelreserve" name="cancelreserve" value="1" 
/>
       <label for="cancelreserve">Cancel Reserve</label>
     </p>
-  <!-- /TMPL_IF -->
+<!-- /TMPL_IF -->
 
-  <!-- TMPL_IF NAME="RESERVE_WAITING" -->
+<!-- TMPL_IF NAME="RESERVE_WAITING" -->
     <p>
       <input type="checkbox" id="cancelreserve" name="cancelreserve" value="1" 
/>
       <label for="cancelreserve">Cancel Reserve</label>
     </p>
-  <!-- /TMPL_IF -->
+<!-- /TMPL_IF -->
 
     <input type="hidden" name="barcode" value="<!-- TMPL_VAR NAME="barcode" 
-->" />
     <input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR 
NAME="borrowernumber" -->" />
@@ -182,15 +183,15 @@
       <input type="submit" value="Confirm Issue" accesskey="y" />
     </div>
 
-  </form>
+</form>
 
-  <form method="get" action="/cgi-bin/koha/circ/circulation.pl">
+<form method="get" action="/cgi-bin/koha/circ/circulation.pl">
     <input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR 
NAME="borrowernumber" -->" />
 
     <div id="action">
       <input type="submit" value="Don't Issue" accesskey="n" />
     </div>
-  </form>
+</form>
   
 </fieldset>
 
@@ -202,7 +203,7 @@
 
 <!-- TMPL_IF NAME="message" -->
 <p>
-  No patron matched <!-- TMPL_VAR name="message" -->
+No patron matched <!-- TMPL_VAR name="message" -->
 <a href="/cgi-bin/koha/members/memberentry.pl?op=add&category_type=A"/>Add 
adult</a>
 <a href="/cgi-bin/koha/members/memberentry.pl?op=add&category_type=C"/>Add 
child</a>  
 </p>
@@ -211,7 +212,7 @@
 
 <!-- TMPL_IF NAME="CGIselectborrower" -->
 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" 
name="mainform">
-  <fieldset id="circ_circulation_selectborrower">
+<fieldset id="circ_circulation_selectborrower">
     <legend>Borrower selection</legend>
   
     <input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->" 
/>
@@ -230,7 +231,7 @@
       <a 
href="/cgi-bin/koha/members/memberentry.pl?op=add&category_type=C"/>Add 
child</a>
       or <a href="JavaScript:back();">try another search</a>
     </p>
-  </fieldset>
+</fieldset>
 </form>
 <!-- TMPL_ELSE --> <!-- CGIselectborrower -->
 
@@ -238,7 +239,7 @@
 
 <!-- TMPL_IF NAME="borrowernumber" -->
 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" name="mainform">
-  <fieldset id="circ_circulation_issue">
+<fieldset id="circ_circulation_issue">
     <legend>Issue an item</legend>
 
     <p>
@@ -282,7 +283,7 @@
                    <li><span class="problem">Patron's card is 
expired</span></li>
                  <!-- /TMPL_IF -->
                 </ul>
-   </p>
+</p>
        <!-- TMPL_IF NAME="memberofinstution" -->
        <p><!-- TMPL_VAR NAME="CGIorganisations" --></p>
        <!-- /TMPL_IF -->
@@ -604,7 +605,7 @@
       <input type="submit" value="Issue" />
     </div>
 
-  </fieldset>
+</fieldset>
 </form>
 
 <!-- TMPL_IF NAME="WaitingReserveLoop" -->     
@@ -622,7 +623,7 @@
                </ul>
        </p>
     <!-- /TMPL_LOOP -->
- </fieldset>
+</fieldset>
  
 <!-- /TMPL_IF -->
 
@@ -715,12 +716,12 @@
     <input type="hidden" name="cardnumber" value="<!-- TMPL_VAR 
NAME="cardnumber" -->" />
     <input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR 
NAME="borrowernumber" -->" />
     
- <!-- TMPL_IF NAME="todayissues" -->
+<!-- TMPL_IF NAME="todayissues" -->
     <table>
       <tr>
-        <th>Due Date</th>
         <th>Title</th>
-        <th>Author</th>
+        <th>Due Date</th>
+        <th>Itemtype</th>
         <th>Call No</th>
         <th>Barcode</th>
         <th>Renew?</th>
@@ -735,12 +736,18 @@
       <!-- TMPL_ELSE -->
       <tr class="highlight">
       <!-- /TMPL_IF -->
-        <td><!-- TMPL_VAR NAME="dd" --></td>
         <td>
           <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- 
TMPL_VAR NAME="biblionumber" -->&amp;type=intra"><!-- TMPL_VAR NAME="title" 
--></a>
-          <br/><!-- TMPL_VAR name="itemnotes" -->
+        <br /><!-- TMPL_VAR NAME="author" -->
+        - <!-- TMPL_VAR name="itemnotes" -->
+        </td>
+        <td><!-- TMPL_VAR NAME="dd" --></td>
+        <td>
+            <!-- TMPL_VAR NAME="itemtype" -->
+            <!-- TMPL_IF NAME="itemtype_image" -->
+            <img src="<!-- TMPL_VAR NAME="itemtype_image" -->" />
+            <!-- /TMPL_IF -->
         </td>
-        <td><!-- TMPL_VAR NAME="author" --></td>
         <td><!-- TMPL_VAR NAME="classification" --></td>
         <td><!-- TMPL_VAR NAME="barcode" --></td>
         <td>
@@ -761,9 +768,17 @@
       </tr>
     <!-- /TMPL_LOOP --> <!-- todayissues -->
     <!-- /TMPL_IF --> <!-- todayissues -->
-  <!-- TMPL_IF NAME="previssues" -->
+<!-- TMPL_IF NAME="previssues" -->
     <table>
       <tr>
+        <th>Title</th>
+        <th>Due Date</th>
+        <th>Itemtype</th>
+        <th>Call No</th>
+        <th>Barcode</th>
+        <th>Renew?</th>
+    </tr>
+    <tr>
         <th colspan="6"><a name="previous" id="previous">Previous 
Issues</a></th>
       </tr>
     <!-- TMPL_LOOP NAME="previssues" -->
@@ -773,19 +788,18 @@
         <tr class="highlight">
       <!-- /TMPL_IF -->
         <td>
-      <!-- TMPL_IF NAME="od" -->
-      <!-- /TMPL_IF -->
-
+        <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR 
NAME="biblionumber" -->&amp;type=intra"><!-- TMPL_VAR NAME="title" --></a>
+        <br/><!-- TMPL_VAR NAME="author" --> - <!-- TMPL_VAR name="itemnotes" 
-->
+        </td>
+        <td>
       <!-- TMPL_VAR NAME="dd" -->
-
-      <!-- TMPL_IF NAME="od" -->
-      <!-- /TMPL_IF -->
         </td>
         <td>
-          <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- 
TMPL_VAR NAME="biblionumber" -->&amp;type=intra"><!-- TMPL_VAR NAME="title" 
--></a>
-          <br/><!-- TMPL_VAR name="itemnotes" -->
+            <!-- TMPL_VAR NAME="itemtype" -->
+            <!-- TMPL_IF NAME="itemtype_image" -->
+            <img src="<!-- TMPL_VAR NAME="itemtype_image" -->" />
+            <!-- /TMPL_IF -->
         </td>
-        <td><!-- TMPL_VAR NAME="author" --></td>
         <td><!-- TMPL_VAR NAME="classification" --></td>
         <td><!-- TMPL_VAR NAME="barcode" --></td>
         <td>
@@ -805,7 +819,7 @@
         </td>
       </tr>
     <!-- /TMPL_LOOP --> <!-- previssues -->
-  <!-- /TMPL_IF --> <!-- previssues -->
+<!-- /TMPL_IF --> <!-- previssues -->
     </table>
 
     <div id="action">

Index: koha-tmpl/intranet-tmpl/prog/en/circ/returns.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/circ/returns.tmpl,v
retrieving revision 1.4.2.11
retrieving revision 1.4.2.12
diff -u -b -r1.4.2.11 -r1.4.2.12
--- koha-tmpl/intranet-tmpl/prog/en/circ/returns.tmpl   25 Jan 2007 18:06:52 
-0000      1.4.2.11
+++ koha-tmpl/intranet-tmpl/prog/en/circ/returns.tmpl   31 Jan 2007 15:23:49 
-0000      1.4.2.12
@@ -186,26 +186,29 @@
                 <input type="hidden" name="bn-<!-- TMPL_VAR Name="counter" 
-->" value="<!-- TMPL_VAR Name="borrowernumber" -->" />
             <!-- /TMPL_LOOP -->
             </fieldset>
-        </form><!-- TMPL_IF NAME="errmsgloop" --><!-- TMPL_LOOP 
Name="errmsgloop" -->
-                
+        </form>
+    <!-- TMPL_IF NAME="errmsgloop" -->
+    <fieldset>
+        <legend>Error</legend>
+        <!-- TMPL_LOOP Name="errmsgloop" -->
                 <!-- TMPL_IF Name="badbarcode" -->
-                    No Item with barcode: <!-- TMPL_VAR Name="msg" -->
+                        <p class="problem">No Item with barcode: <!-- TMPL_VAR 
Name="msg" --></p>
                 <!-- /TMPL_IF -->
                 <!-- TMPL_IF Name="ispermanent" -->
-                    Please return to  <!-- TMPL_VAR Name="msg" -->
+                        <p class="problem">Please return to  <!-- TMPL_VAR 
Name="msg" --></p>
                 <!-- /TMPL_IF -->
                 <!-- TMPL_IF Name="notissued" -->
-                    Not On Issue.
+                        <p class="problem">Not On Issue.</p>
                 <!-- /TMPL_IF -->
                 <!-- TMPL_IF Name="waslost" -->
-                    Item was lost, now found.
+                        <p class="problem">Item was lost, now found.</p>
                 <!-- /TMPL_IF -->
                 <!-- TMPL_IF Name="withdrawn" -->
-                    Item Cancelled
+                        <p class="problem">Item Cancelled</p>
                 <!-- /TMPL_IF -->
-                
-            <!-- /TMPL_LOOP --><!-- /TMPL_IF -->
-
+            <!-- /TMPL_LOOP -->
+        <!-- /TMPL_IF -->
+    </fieldset>
 <!-- /TMPL_IF -->
 
 <!-- TMPL_IF Name="returned" -->
@@ -227,22 +230,38 @@
 
 
 <!-- TMPL_IF Name="riloop" -->
-
+        <h2>Returned Items</h2>
         <table>
-        <caption>Returned Items</caption>
-        <tr><th>Due Date</th><th>Bar 
Code</th><th>Title</th><th>Author</th><th>Type</th><th>Patron</th></tr>
+        <tr>
+            <th>Title</th>
+            <th>Itemtype</th>
+            <th>Due Date</th>
+            <th>Barcode</th>
+            <th>Patron</th>
+        </tr>
         <!-- TMPL_LOOP Name="riloop" -->
-            <tr><td><!-- TMPL_IF Name="duedate" --><!-- TMPL_IF Name="early" 
--><!-- /TMPL_IF --><!-- TMPL_VAR Name="month" -->/<!-- TMPL_VAR Name="day" 
-->/<!-- TMPL_VAR Name="year" --><!-- TMPL_IF Name="early" --></span><!-- 
/TMPL_IF --><!-- TMPL_ELSE -->Not on Issue.<!-- /TMPL_IF --></td>
+            <tr>
             <td>
-            <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- 
TMPL_VAR Name="itembiblionumber" -->&type=intra"><!-- TMPL_VAR Name="barcode" 
--></a></td>
-            <td><!-- TMPL_VAR Name="itemtitle" --></td>
-            <td><!-- TMPL_VAR Name="itemauthor" --></td>
+                <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- 
TMPL_VAR Name="itembiblionumber" -->">
+                    <!-- TMPL_VAR Name="itemtitle" --></a>
+                    <br /><!-- TMPL_VAR Name="itemauthor" -->
+            </td>
             <td><!-- TMPL_VAR Name="ccode" --></td>
             <td>
-            <!-- TMPL_IF Name="duedate" -->Yes, duedate
+            <!-- TMPL_IF Name="duedate" -->
+                <!-- TMPL_IF Name="early" --><!-- /TMPL_IF --><!-- TMPL_VAR 
Name="month" -->/<!-- TMPL_VAR Name="day" -->/<!-- TMPL_VAR Name="year" --><!-- 
TMPL_IF Name="early" --></span><!-- /TMPL_IF -->
+            <!-- TMPL_ELSE -->
+                Not on Issue.
+            <!-- /TMPL_IF -->
+            </td>
+            <td>
+                <!-- TMPL_VAR Name="barcode" -->
+            </td>
+            <td>
+            <!-- TMPL_IF Name="duedate" -->
                 <a 
href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR 
Name="borrowernumber" -->">
-                    <!-- TMPL_VAR Name="borcnum" -->
-                </a><!-- TMPL_VAR Name="borsurname" -->, <!-- TMPL_VAR 
Name="borfirstname" --> 
+                    <!-- TMPL_VAR Name="borsurname" -->, <!-- TMPL_VAR 
Name="borfirstname" -->
+                </a>
             <!-- TMPL_ELSE -->
                                 Not on issue.
             <!-- /TMPL_IF -->

Index: koha-tmpl/intranet-tmpl/prog/en/members/moremember.tmpl
===================================================================
RCS file: 
/sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/members/moremember.tmpl,v
retrieving revision 1.12.2.27
retrieving revision 1.12.2.28
diff -u -b -r1.12.2.27 -r1.12.2.28
--- koha-tmpl/intranet-tmpl/prog/en/members/moremember.tmpl     29 Jan 2007 
16:37:15 -0000      1.12.2.27
+++ koha-tmpl/intranet-tmpl/prog/en/members/moremember.tmpl     31 Jan 2007 
15:23:49 -0000      1.12.2.28
@@ -230,10 +230,11 @@
                 <!-- /TMPL_IF -->
             <td>
                 <!-- TMPL_IF name="red" --><span class="overdue"><!-- /TMPL_IF 
-->
-                <!-- TMPL_VAR NAME="title" --><!-- TMPL_IF name="red" 
--></span><!-- /TMPL_IF -->
-                <a href="/cgi-bin/koha/catalogue/detail.pl?item=<!-- TMPL_VAR 
NAME="itemnumber" -->&amp;biblionumber=<!-- TMPL_VAR NAME="biblionumber" 
-->&amp;bi=<!-- TMPL_VAR NAME="biblioitemnumber" -->">
-                    <!-- TMPL_VAR NAME="barcode" -->
+                <!-- TMPL_IF name="red" --></span><!-- /TMPL_IF -->
+                <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- 
TMPL_VAR NAME="biblionumber" -->">
+                    <!-- TMPL_VAR NAME="title" -->
                 </a>
+                <br /><!-- TMPL_VAR name="author" -->
             </td>
             <td><!-- TMPL_VAR NAME="date_due" --></td>
             <td>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]