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 |
- |
|
|