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

(-)a/circ/ysearch.pl (+1 lines)
Lines 86-91 while ( my $b = $borrowers_rs->next ) { Link Here
86
        cardnumber     => $b->cardnumber // '',
86
        cardnumber     => $b->cardnumber // '',
87
        dateofbirth    => format_sqldatetime($b->dateofbirth, undef, undef, 1) // '',
87
        dateofbirth    => format_sqldatetime($b->dateofbirth, undef, undef, 1) // '',
88
        age            => $b->get_age    // '',
88
        age            => $b->get_age    // '',
89
        streetnumber   => $b->streetnumber // '',
89
        address        => $b->address    // '',
90
        address        => $b->address    // '',
90
        city           => $b->city       // '',
91
        city           => $b->city       // '',
91
        zipcode        => $b->zipcode    // '',
92
        zipcode        => $b->zipcode    // '',
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/js_includes.inc (-1 / +3 lines)
Lines 89-95 Link Here
89
                            itemString += ( item.dateofbirth ? item.dateofbirth.escapeHtml() : "" )
89
                            itemString += ( item.dateofbirth ? item.dateofbirth.escapeHtml() : "" )
90
                                        + "<span class=\"age_years\"> (" + ( item.age ? item.age.escapeHtml() : "" ) + " " +  _("years") + ")</span>, ";
90
                                        + "<span class=\"age_years\"> (" + ( item.age ? item.age.escapeHtml() : "" ) + " " +  _("years") + ")</span>, ";
91
                        }
91
                        }
92
                        itemString += ( item.address ? item.address.escapeHtml() : "" ) + " "
92
                        itemString += ( item.streetnumber ? item.streetnumber.escapeHtml() : "" ) + " "
93
                                    + ( item.address ? item.address.escapeHtml() : "" ) + " "
93
                                    + ( item.city    ? item.city.escapeHtml()    : "" ) + " "
94
                                    + ( item.city    ? item.city.escapeHtml()    : "" ) + " "
94
                                    + ( item.zipcode ? item.zipcode.escapeHtml() : "" ) + " "
95
                                    + ( item.zipcode ? item.zipcode.escapeHtml() : "" ) + " "
95
                                    + ( item.country ? item.country.escapeHtml() : "" )
96
                                    + ( item.country ? item.country.escapeHtml() : "" )
Lines 131-136 Link Here
131
                        + cardnumber.escapeHtml()
132
                        + cardnumber.escapeHtml()
132
                        + " <small>"
133
                        + " <small>"
133
                            + ( item.dateofbirth ? item.dateofbirth.escapeHtml() : "" ) + " "
134
                            + ( item.dateofbirth ? item.dateofbirth.escapeHtml() : "" ) + " "
135
                            + ( item.streetnumber? item.streetnumber.escapeHtml() : "" )     + " "
134
                            + ( item.address     ? item.address.escapeHtml() : "" )     + " "
136
                            + ( item.address     ? item.address.escapeHtml() : "" )     + " "
135
                            + ( item.city        ? item.city.escapeHtml() : "" )        + " "
137
                            + ( item.city        ? item.city.escapeHtml() : "" )        + " "
136
                            + ( item.zipcode     ? item.zipcode.escapeHtml() : "" )     + " "
138
                            + ( item.zipcode     ? item.zipcode.escapeHtml() : "" )     + " "
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/request-article.tt (+2 lines)
Lines 330-335 Link Here
330
                            + " (" + ( item.cardnumber ? item.cardnumber.escapeHtml() : "" ) + ")"
330
                            + " (" + ( item.cardnumber ? item.cardnumber.escapeHtml() : "" ) + ")"
331
                            + " "
331
                            + " "
332
                            + "<small>"
332
                            + "<small>"
333
                                + ( item.streetnumber ? item.streetnumber.escapeHtml() : "" )
334
                                + " "
333
                                + ( item.address ? item.address.escapeHtml() : "" )
335
                                + ( item.address ? item.address.escapeHtml() : "" )
334
                                + " "
336
                                + " "
335
                                + ( item.city ? item.city.escapeHtml() : "" )
337
                                + ( item.city ? item.city.escapeHtml() : "" )
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course.tt (+2 lines)
Lines 177-182 Link Here
177
                            + " (" + ( item.cardnumber ? item.cardnumber.escapeHtml() : "" ) + ")"
177
                            + " (" + ( item.cardnumber ? item.cardnumber.escapeHtml() : "" ) + ")"
178
                            + " "
178
                            + " "
179
                            + "<small>"
179
                            + "<small>"
180
                                + ( item.streetnumber ? item.streetnumber.escapeHtml() : "" )
181
                                + " "
180
                                + ( item.address ? item.address.escapeHtml() : "" )
182
                                + ( item.address ? item.address.escapeHtml() : "" )
181
                                + " "
183
                                + " "
182
                                + ( item.city ? item.city.escapeHtml() : "" )
184
                                + ( item.city ? item.city.escapeHtml() : "" )
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-1 / +2 lines)
Lines 1328-1333 Link Here
1328
                            + " (" + ( item.cardnumber ? item.cardnumber.escapeHtml() : "" ) + ")"
1328
                            + " (" + ( item.cardnumber ? item.cardnumber.escapeHtml() : "" ) + ")"
1329
                            + " "
1329
                            + " "
1330
                            + "<small>"
1330
                            + "<small>"
1331
                                + ( item.streetnumber ? item.streetnumber.escapeHtml() : "" )
1332
                                + " "
1331
                                + ( item.address ? item.address.escapeHtml() : "" )
1333
                                + ( item.address ? item.address.escapeHtml() : "" )
1332
                                + " "
1334
                                + " "
1333
                                + ( item.city ? item.city.escapeHtml() : "" )
1335
                                + ( item.city ? item.city.escapeHtml() : "" )
1334
- 

Return to bug 26965