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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc (-1 / +1 lines)
Lines 1-6 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
[% IF ( borrowernumber ) %]
2
[% IF ( borrowernumber ) %]
3
<div class="patroninfo"><h5>[% INCLUDE 'patron-title.inc' %]</h5>
3
<div class="patroninfo"><h5>[% INCLUDE 'patron-title.inc' use_html=1 %]</h5>
4
<!--[if IE 6]>
4
<!--[if IE 6]>
5
<style type="tex/css">img { width: expression(this.width > 140 ? 140: true);
5
<style type="tex/css">img { width: expression(this.width > 140 ? 140: true);
6
}</style>
6
}</style>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-title.inc (-4 / +12 lines)
Lines 1-11 Link Here
1
[%# Parameter use_html - if 1, the html tags are generated %]
2
[%- IF use_html %]
3
    [%- span_start = '<span class="patron-title">' %]
4
    [%- span_end   = '</span>' %]
5
[%- ELSE %]
6
    [%- span_start = '' %]
7
    [%- span_end   = '' %]
8
[%- END %]
1
[%- IF ( borrower.borrowernumber ) %]
9
[%- IF ( borrower.borrowernumber ) %]
2
    [%- IF borrower.category_type == 'I' %]
10
    [%- IF borrower.category_type == 'I' %]
3
        [%- borrower.surname | html %] [% IF borrower.othernames %] ([% borrower.othernames | html %]) [% END %]
11
        [%- borrower.surname | html %] [% IF borrower.othernames %] ([% borrower.othernames | html %]) [% END %]
4
    [%- ELSE %]
12
    [%- ELSE %]
5
        [%- IF invert_name %]
13
        [%- IF invert_name %]
6
            [%- IF borrower.title %]<span class="patron-title">[%- borrower.title | html %]</span> [% END %][%- borrower.surname | html %], [% borrower.firstname | html %] [% IF borrower.othernames %] ([% borrower.othernames | html %]) [% END %]
14
            [%- IF borrower.title %][% span_start %][%- borrower.title | html %][% span_end %] [% END %][%- borrower.surname | html %], [% borrower.firstname | html %] [% IF borrower.othernames %] ([% borrower.othernames | html %]) [% END %]
7
        [%- ELSE %]
15
        [%- ELSE %]
8
            [%- IF borrower.title %]<span class="patron-title">[%- borrower.title | html %]</span> [% END %][%- borrower.firstname | html %] [% IF borrower.othernames %] ([% borrower.othernames | html %]) [% END %] [% borrower.surname | html %]
16
            [%- IF borrower.title %][% span_start %][%- borrower.title | html %][% span_end %] [% END %][%- borrower.firstname | html %] [% IF borrower.othernames %] ([% borrower.othernames | html %]) [% END %] [% borrower.surname | html %]
9
        [%- END -%]
17
        [%- END -%]
10
    [%- END -%]
18
    [%- END -%]
11
    [%- IF ( borrower.cardnumber ) -%]
19
    [%- IF ( borrower.cardnumber ) -%]
Lines 16-24 Link Here
16
        [%- surname | html %] [% IF othernames %] ([% othernames | html %]) [% END %]
24
        [%- surname | html %] [% IF othernames %] ([% othernames | html %]) [% END %]
17
    [%- ELSE %]
25
    [%- ELSE %]
18
        [%- IF invert_name %]
26
        [%- IF invert_name %]
19
            [%- IF title %]<span class="patron-title">[%- title | html %]</span> [% END %][%- surname | html %], [% firstname | html %] [% IF othernames %] ([% othernames | html %]) [% END %]
27
            [%- IF title %][% span_start %][%- title | html %][% span_end %] [% END %][%- surname | html %], [% firstname | html %] [% IF othernames %] ([% othernames | html %]) [% END %]
20
        [%- ELSE %]
28
        [%- ELSE %]
21
            [%- IF title %]<span class="patron-title">[%- title | html %]</span> [% END %][%- firstname | html %] [% IF othernames %] ([% othernames | html %]) [% END %] [% surname | html %]
29
            [%- IF title %][% span_start %][%- title | html %][% span_end %] [% END %][%- firstname | html %] [% IF othernames %] ([% othernames | html %]) [% END %] [% surname | html %]
22
        [%- END %]
30
        [%- END %]
23
    [%- END -%]
31
    [%- END -%]
24
    [%- IF ( cardnumber ) -%]
32
    [%- IF ( cardnumber ) -%]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-4 / +4 lines)
Lines 133-139 $(document).ready(function() { Link Here
133
133
134
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo;
134
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo;
135
[% IF borrowernumber and borrower %]
135
[% IF borrowernumber and borrower %]
136
    <a href="/cgi-bin/koha/circ/circulation.pl">Checkouts</a> &rsaquo; [% INCLUDE 'patron-title.inc' %]
136
    <a href="/cgi-bin/koha/circ/circulation.pl">Checkouts</a> &rsaquo; [% INCLUDE 'patron-title.inc' use_html = 1 %]
137
[% ELSE %]
137
[% ELSE %]
138
    <strong>Checkouts</strong>
138
    <strong>Checkouts</strong>
139
[% END %]
139
[% END %]
Lines 414-420 $(document).ready(function() { Link Here
414
414
415
[% IF ( RESERVED || ISSUED_TO_ANOTHER ) && (CAN_user_reserveforothers_place_holds ) %]
415
[% IF ( RESERVED || ISSUED_TO_ANOTHER ) && (CAN_user_reserveforothers_place_holds ) %]
416
    [% UNLESS noissues %]
416
    [% UNLESS noissues %]
417
        <button type="submit" onclick="window.location.href='/cgi-bin/koha/reserve/request.pl?biblionumber=[% itembiblionumber %]&borrowernumber=[% borrowernumber %]'"><i class="fa fa-sticky-note-o"></i> Cancel checkout and place a hold for [% INCLUDE 'patron-title.inc' %]</button>
417
        <button type="submit" onclick="window.location.href='/cgi-bin/koha/reserve/request.pl?biblionumber=[% itembiblionumber %]&borrowernumber=[% borrowernumber %]'"><i class="fa fa-sticky-note-o"></i> Cancel checkout and place a hold for [% INCLUDE 'patron-title.inc' use_html = 1 %]</button>
418
    [% END %]
418
    [% END %]
419
[% END %]
419
[% END %]
420
</div></div>
420
</div></div>
Lines 635-641 No patron matched <span class="ex">[% message | html %]</span> Link Here
635
635
636
    [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
636
    [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
637
637
638
    <label class="circ_barcode" for="barcode">Checking out to [% INCLUDE 'patron-title.inc' %]</label>
638
    <label class="circ_barcode" for="barcode">Checking out to [% INCLUDE 'patron-title.inc' use_html = 1 %]</label>
639
639
640
        [% IF Koha.Preference('itemBarcodeFallbackSearch') %]
640
        [% IF Koha.Preference('itemBarcodeFallbackSearch') %]
641
            <div class="hint">Enter item barcode or keyword:</div>
641
            <div class="hint">Enter item barcode or keyword:</div>
Lines 754-760 No patron matched <span class="ex">[% message | html %]</span> Link Here
754
            [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
754
            [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
755
                <div id="circmessages" class="circmessage attention">
755
                <div id="circmessages" class="circmessage attention">
756
            [% ELSE %]
756
            [% ELSE %]
757
                <h4>Checking out to [% INCLUDE 'patron-title.inc' %]</h4>
757
                <h4>Checking out to [% INCLUDE 'patron-title.inc' use_html = 1 %]</h4>
758
                <div id="circmessages" class="circmessage warning">
758
                <div id="circmessages" class="circmessage warning">
759
            [% END %]
759
            [% END %]
760
            <h3>
760
            <h3>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt (-4 / +4 lines)
Lines 41-47 $(document).ready(function() { Link Here
41
41
42
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo;
42
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo;
43
    [% IF borrower and borrowernumber %]
43
    [% IF borrower and borrowernumber %]
44
        <a href="/cgi-bin/koha/circ/circulation.pl">Batch check out</a> &rsaquo; [% INCLUDE 'patron-title.inc' %]
44
        <a href="/cgi-bin/koha/circ/circulation.pl">Batch check out</a> &rsaquo; [% INCLUDE 'patron-title.inc' use_html = 1 %]
45
    [% ELSE %]
45
    [% ELSE %]
46
        Batch check out
46
        Batch check out
47
    [% END %]
47
    [% END %]
Lines 78-84 $(document).ready(function() { Link Here
78
[% ELSIF borrower and not checkout_infos %]
78
[% ELSIF borrower and not checkout_infos %]
79
  <form method="post" enctype="multipart/form-data" action="/cgi-bin/koha/circ/circulation.pl">
79
  <form method="post" enctype="multipart/form-data" action="/cgi-bin/koha/circ/circulation.pl">
80
    <fieldset id="circ_circulation_issue">
80
    <fieldset id="circ_circulation_issue">
81
      <label for="barcode">Checking out to [% INCLUDE 'patron-title.inc' %]</label>
81
      <label for="barcode">Checking out to [% INCLUDE 'patron-title.inc' use_html = 1 %]</label>
82
      <fieldset class="rows">
82
      <fieldset class="rows">
83
        <legend>Use a file</legend>
83
        <legend>Use a file</legend>
84
        <ol>
84
        <ol>
Lines 106-115 $(document).ready(function() { Link Here
106
106
107
[% ELSIF borrower %]
107
[% ELSIF borrower %]
108
  [% IF confirmation_needed && CAN_user_circulate_force_checkout %]
108
  [% IF confirmation_needed && CAN_user_circulate_force_checkout %]
109
    <h3>Batch checkout confirmation [% IF borrowernumber %] for [% INCLUDE 'patron-title.inc' invert_name = 1 %] [% END %]</h3>
109
    <h3>Batch checkout confirmation [% IF borrowernumber %] for [% INCLUDE 'patron-title.inc' invert_name = 1 use_html = 1 ] [% END %]</h3>
110
    <form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
110
    <form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
111
  [% ELSE %]
111
  [% ELSE %]
112
    <h3>Batch checkout information [% IF borrowernumber %] for [% INCLUDE 'patron-title.inc' invert_name = 1 %] |[% batch %]|[% END %]</h3>
112
    <h3>Batch checkout information [% IF borrowernumber %] for [% INCLUDE 'patron-title.inc' invert_name = 1 use_html = 1 %] |[% batch %]|[% END %]</h3>
113
  [% END %]
113
  [% END %]
114
    <table id="checkout_infos">
114
    <table id="checkout_infos">
115
      <thead>
115
      <thead>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-1 / +1 lines)
Lines 42-48 $(document).ready(function() { Link Here
42
[% INCLUDE 'header.inc' %]
42
[% INCLUDE 'header.inc' %]
43
[% INCLUDE 'patron-search.inc' %]
43
[% INCLUDE 'patron-search.inc' %]
44
44
45
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Account for [% INCLUDE 'patron-title.inc' %]</div>
45
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Account for [% INCLUDE 'patron-title.inc' use_html = 1 %]</div>
46
46
47
<div id="doc3" class="yui-t2">
47
<div id="doc3" class="yui-t2">
48
   
48
   
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/files.tt (-1 / +1 lines)
Lines 21-27 Link Here
21
[% INCLUDE 'header.inc' %]
21
[% INCLUDE 'header.inc' %]
22
[% INCLUDE 'patron-search.inc' %]
22
[% INCLUDE 'patron-search.inc' %]
23
23
24
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Files for [% INCLUDE 'patron-title.inc' %]</div>
24
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Files for [% INCLUDE 'patron-title.inc' use_html = 1 %]</div>
25
25
26
<div id="doc3" class="yui-t2">
26
<div id="doc3" class="yui-t2">
27
    <div id="bd">
27
    <div id="bd">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt (-1 / +1 lines)
Lines 31-37 Link Here
31
[% INCLUDE 'header.inc' %]
31
[% INCLUDE 'header.inc' %]
32
[% INCLUDE 'patron-search.inc' %]
32
[% INCLUDE 'patron-search.inc' %]
33
33
34
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Holds history for [% INCLUDE 'patron-title.inc' %]</div>
34
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Holds history for [% INCLUDE 'patron-title.inc' use_html = 1 %]</div>
35
35
36
<div id="doc3" class="yui-t2">
36
<div id="doc3" class="yui-t2">
37
    <div id="bd">
37
    <div id="bd">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt (-2 / +2 lines)
Lines 22-28 Link Here
22
<div id="breadcrumbs">
22
<div id="breadcrumbs">
23
         <a href="/cgi-bin/koha/mainpage.pl">Home</a>
23
         <a href="/cgi-bin/koha/mainpage.pl">Home</a>
24
&rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
24
&rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
25
&rsaquo; Details for [% INCLUDE 'patron-title.inc' %]
25
&rsaquo; Details for [% INCLUDE 'patron-title.inc' use_html = 1 %]
26
</div>
26
</div>
27
27
28
<div id="doc3" class="yui-t2">
28
<div id="doc3" class="yui-t2">
Lines 37-43 Link Here
37
        <div class="yui-g">
37
        <div class="yui-g">
38
38
39
          <!-- Title -->
39
          <!-- Title -->
40
          <h3>Housebound details for [% INCLUDE 'patron-title.inc' %]</h3>
40
          <h3>Housebound details for [% INCLUDE 'patron-title.inc' use_html = 1 %]</h3>
41
          <div class="first">
41
          <div class="first">
42
42
43
            [% FOR m IN messages %]
43
            [% FOR m IN messages %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-1 / +1 lines)
Lines 143-149 function validate1(date) { Link Here
143
<div id="breadcrumbs">
143
<div id="breadcrumbs">
144
         <a href="/cgi-bin/koha/mainpage.pl">Home</a>
144
         <a href="/cgi-bin/koha/mainpage.pl">Home</a>
145
&rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
145
&rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
146
&rsaquo; [% IF ( unknowuser ) %]Patron does not exist[% ELSE %]Patron details for [% INCLUDE 'patron-title.inc' %][% END %]
146
&rsaquo; [% IF ( unknowuser ) %]Patron does not exist[% ELSE %]Patron details for [% INCLUDE 'patron-title.inc' use_html = 1 %][% END %]
147
</div>
147
</div>
148
148
149
<div id="doc3" class="yui-t2">
149
<div id="doc3" class="yui-t2">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt (-2 / +2 lines)
Lines 35-48 Link Here
35
[% INCLUDE 'header.inc' %]
35
[% INCLUDE 'header.inc' %]
36
[% INCLUDE 'patron-search.inc' %]
36
[% INCLUDE 'patron-search.inc' %]
37
37
38
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Sent notices for [% INCLUDE 'patron-title.inc' %]</div>
38
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Sent notices for [% INCLUDE 'patron-title.inc' use_html = 1 %]</div>
39
39
40
<div id="doc3" class="yui-t2">
40
<div id="doc3" class="yui-t2">
41
    <div id="bd">
41
    <div id="bd">
42
    <div id="yui-main">
42
    <div id="yui-main">
43
    <div class="yui-b">
43
    <div class="yui-b">
44
[% INCLUDE 'members-toolbar.inc' %]
44
[% INCLUDE 'members-toolbar.inc' %]
45
<h1>Sent notices for [% INCLUDE 'patron-title.inc' %]</h1>
45
<h1>Sent notices for [% INCLUDE 'patron-title.inc' use_html = 1 %]</h1>
46
46
47
[% IF ( QUEUED_MESSAGES ) %]
47
[% IF ( QUEUED_MESSAGES ) %]
48
    <table id="noticestable">
48
    <table id="noticestable">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/purchase-suggestions.tt (-1 / +1 lines)
Lines 25-31 Link Here
25
<div id="breadcrumbs">
25
<div id="breadcrumbs">
26
         <a href="/cgi-bin/koha/mainpage.pl">Home</a>
26
         <a href="/cgi-bin/koha/mainpage.pl">Home</a>
27
&rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
27
&rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
28
&rsaquo; Purchase suggestions for [% INCLUDE 'patron-title.inc' %]
28
&rsaquo; Purchase suggestions for [% INCLUDE 'patron-title.inc' use_html = 1 %]
29
</div>
29
</div>
30
30
31
<div id="doc3" class="yui-t1">
31
<div id="doc3" class="yui-t1">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt (-1 / +1 lines)
Lines 39-45 Link Here
39
[% INCLUDE 'header.inc' %]
39
[% INCLUDE 'header.inc' %]
40
[% INCLUDE 'patron-search.inc' %]
40
[% INCLUDE 'patron-search.inc' %]
41
41
42
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Circulation history for [% INCLUDE 'patron-title.inc' %]</div>
42
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Circulation history for [% INCLUDE 'patron-title.inc' use_html = 1 %]</div>
43
43
44
<div id="doc3" class="yui-t2">
44
<div id="doc3" class="yui-t2">
45
   
45
   
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/routing-lists.tt (-1 / +1 lines)
Lines 9-15 Link Here
9
[% INCLUDE 'header.inc' %]
9
[% INCLUDE 'header.inc' %]
10
[% INCLUDE 'patron-search.inc' %]
10
[% INCLUDE 'patron-search.inc' %]
11
11
12
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Subscription Routing Lists for [% INCLUDE 'patron-title.inc' %]</div>
12
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Subscription Routing Lists for [% INCLUDE 'patron-title.inc' use_html = 1 %]</div>
13
13
14
<div id="doc3" class="yui-t2">
14
<div id="doc3" class="yui-t2">
15
    <div id="bd">
15
    <div id="bd">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/statistics.tt (-2 / +2 lines)
Lines 26-32 Statistics for [% INCLUDE 'patron-title.inc' %] Link Here
26
<div id="breadcrumbs">
26
<div id="breadcrumbs">
27
         <a href="/cgi-bin/koha/mainpage.pl">Home</a>
27
         <a href="/cgi-bin/koha/mainpage.pl">Home</a>
28
&rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
28
&rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
29
&rsaquo; [% IF ( unknowuser ) %]Patron does not exist[% ELSE %]Statistics for [% INCLUDE 'patron-title.inc' invert_name = 1 %][% END %]
29
&rsaquo; [% IF ( unknowuser ) %]Patron does not exist[% ELSE %]Statistics for [% INCLUDE 'patron-title.inc' invert_name = 1 use_html = 1 %][% END %]
30
</div>
30
</div>
31
31
32
<div id="doc3" class="yui-t1">
32
<div id="doc3" class="yui-t1">
Lines 36-42 Statistics for [% INCLUDE 'patron-title.inc' %] Link Here
36
        <div class="yui-b">
36
        <div class="yui-b">
37
        [% INCLUDE 'members-toolbar.inc' %]
37
        [% INCLUDE 'members-toolbar.inc' %]
38
38
39
            <h3>Statistics for [% INCLUDE 'patron-title.inc' %]</h3>
39
            <h3>Statistics for [% INCLUDE 'patron-title.inc' use_html = 1 %]</h3>
40
            [% IF ( datas.size ) %]
40
            [% IF ( datas.size ) %]
41
                <table id="statistics">
41
                <table id="statistics">
42
                <thead>
42
                <thead>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt (-2 / +1 lines)
Lines 256-262 Link Here
256
                                for <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% object | url %]">Bibliographic record [% object | html %]</a>
256
                                for <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% object | url %]">Bibliographic record [% object | html %]</a>
257
                            [% END %]
257
                            [% END %]
258
                            [% IF ( MEMBERS ) %]
258
                            [% IF ( MEMBERS ) %]
259
                                for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% object | url %]">[% INCLUDE 'patron-title.inc' %]</a>
259
                                for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% object | url %]">[% INCLUDE 'patron-title.inc' use_html = 1 %]</a>
260
                            [% END %]
260
                            [% END %]
261
                            .
261
                            .
262
                        </div>
262
                        </div>
263
- 

Return to bug 19456