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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt (-1 / +1 lines)
Lines 126-132 Link Here
126
                                            <td>
126
                                            <td>
127
                                                <span class="tdlabel">Title:</span>
127
                                                <span class="tdlabel">Title:</span>
128
                                                <a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% MY_TAG.biblionumber %]">
128
                                                <a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% MY_TAG.biblionumber %]">
129
                                                [% MY_TAG.bib_summary |html %]</a></td>
129
                                                [% MY_TAG.title |html %][% IF ( MY_TAG.subtitle ) %][% FOREACH subtitle IN MY_TAG.subtitle %] [% subtitle.subfield |html %][% END %][% END %]</a> [% IF ( MY_TAG.author ) %]by [% MY_TAG.author %][% END %]</td>
130
                                            <td>
130
                                            <td>
131
                                                <span title="[% MY_TAG.date_created %]">
131
                                                <span title="[% MY_TAG.date_created %]">
132
                                                    <span class="tdlabel">Date added:</span>
132
                                                    <span class="tdlabel">Date added:</span>
(-)a/opac/opac-tags.pl (-3 / +4 lines)
Lines 228-235 if ($loggedinuser) { Link Here
228
	$my_tags = get_tag_rows({borrowernumber=>$loggedinuser});
228
	$my_tags = get_tag_rows({borrowernumber=>$loggedinuser});
229
	foreach (@$my_tags) {
229
	foreach (@$my_tags) {
230
		my $biblio = GetBiblioData($_->{biblionumber});
230
		my $biblio = GetBiblioData($_->{biblionumber});
231
		$_->{bib_summary} = $biblio->{title}; 
231
        my $record = &GetMarcBiblio( $_->{biblionumber} );
232
		($biblio->{author}) and $_->{bib_summary} .= " by " . $biblio->{author};
232
        $_->{subtitle} = GetRecordValue( 'subtitle', $record, GetFrameworkCode( $_->{biblionumber} ) );
233
        $_->{title} = $biblio->{title};
234
        $_->{author} = $biblio->{author};
233
		my $date = $_->{date_created} || '';
235
		my $date = $_->{date_created} || '';
234
		$date =~ /\s+(\d{2}\:\d{2}\:\d{2})/;
236
		$date =~ /\s+(\d{2}\:\d{2}\:\d{2})/;
235
		$_->{time_created_display} = $1;
237
		$_->{time_created_display} = $1;
236
- 

Return to bug 13083