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

(-)a/catalogue/detail.pl (+4 lines)
Lines 67-72 my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour ); Link Here
67
my $marcseriesarray  = GetMarcSeries($record,$marcflavour);
67
my $marcseriesarray  = GetMarcSeries($record,$marcflavour);
68
my $marcurlsarray    = GetMarcUrls    ($record,$marcflavour);
68
my $marcurlsarray    = GetMarcUrls    ($record,$marcflavour);
69
my $subtitle         = GetRecordValue('subtitle', $record, $fw);
69
my $subtitle         = GetRecordValue('subtitle', $record, $fw);
70
my $continues	     = GetRecordValue('continues', $record, $fw);
71
my $continuedby      = GetRecordValue('continuedby', $record, $fw);
70
72
71
# Get Branches, Itemtypes and Locations
73
# Get Branches, Itemtypes and Locations
72
my $branches = GetBranches();
74
my $branches = GetBranches();
Lines 173-178 $template->param( Link Here
173
	MARCSERIES  => $marcseriesarray,
175
	MARCSERIES  => $marcseriesarray,
174
	MARCURLS => $marcurlsarray,
176
	MARCURLS => $marcurlsarray,
175
	subtitle    => $subtitle,
177
	subtitle    => $subtitle,
178
	continues   => $continues,
179
	continuedby => $continuedby,
176
	itemdata_ccode      => $itemfields{ccode},
180
	itemdata_ccode      => $itemfields{ccode},
177
	itemdata_enumchron  => $itemfields{enumchron},
181
	itemdata_enumchron  => $itemfields{enumchron},
178
	itemdata_uri        => $itemfields{uri},
182
	itemdata_uri        => $itemfields{uri},
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tmpl (-1 / +10 lines)
Lines 88-93 function verify_images() { Link Here
88
                <!-- TMPL_IF name="pages" --> <!-- /TMPL_IF --><!-- TMPL_VAR name="pages" --> <!-- TMPL_IF NAME="illus" --><!-- TMPL_VAR NAME="illus" --><!-- /TMPL_IF -->
88
                <!-- TMPL_IF name="pages" --> <!-- /TMPL_IF --><!-- TMPL_VAR name="pages" --> <!-- TMPL_IF NAME="illus" --><!-- TMPL_VAR NAME="illus" --><!-- /TMPL_IF -->
89
                <!-- TMPL_IF name="size" --><!-- TMPL_VAR name="size" --><!-- /TMPL_IF -->
89
                <!-- TMPL_IF name="size" --><!-- TMPL_VAR name="size" --><!-- /TMPL_IF -->
90
        </li>
90
        </li>
91
<!-- TMPL_IF name="continues" -->
92
        <li><strong>Continues:</strong>
93
  <!-- TMPL_LOOP name="continues" --> <!-- TMPL_VAR name="subfield" --><!-- TMPL_UNLESS __last__ -->;<!-- /TMPL_UNLESS --> <!-- /TMPL_LOOP -->
94
	</li>
95
<!-- /TMPL_IF -->
96
<!-- TMPL_IF name="continuedby" -->
97
        <li><strong>Continued by:</strong>
98
  <!-- TMPL_LOOP name="continuedby" --> <!-- TMPL_VAR name="subfield" --><!-- TMPL_UNLESS __last__ -->;<!-- /TMPL_UNLESS --> <!-- /TMPL_LOOP -->
99
	</li>
100
<!-- /TMPL_IF -->
91
<!-- TMPL_IF name="MARCURLS" --><li>
101
<!-- TMPL_IF name="MARCURLS" --><li>
92
    
102
    
93
	<strong>Online Resources:</strong>
103
	<strong>Online Resources:</strong>
94
- 

Return to bug 5078