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

(-)a/catalogue/MARCdetail.pl (-2 / +1 lines)
Lines 68-75 my $query = new CGI; Link Here
68
my $dbh          = C4::Context->dbh;
68
my $dbh          = C4::Context->dbh;
69
my $biblionumber = $query->param('biblionumber');
69
my $biblionumber = $query->param('biblionumber');
70
$biblionumber = HTML::Entities::encode($biblionumber);
70
$biblionumber = HTML::Entities::encode($biblionumber);
71
my $frameworkcode = $query->param('frameworkcode');
71
my $frameworkcode = $query->param('frameworkcode') // GetFrameworkCode( $biblionumber );
72
$frameworkcode = GetFrameworkCode( $biblionumber ) unless ($frameworkcode);
73
my $popup        =
72
my $popup        =
74
  $query->param('popup')
73
  $query->param('popup')
75
  ;    # if set to 1, then don't insert links, it's just to show the biblio
74
  ;    # if set to 1, then don't insert links, it's just to show the biblio
(-)a/catalogue/labeledMARCdetail.pl (-3 / +1 lines)
Lines 38-45 my $query = new CGI; Link Here
38
my $dbh          = C4::Context->dbh;
38
my $dbh          = C4::Context->dbh;
39
my $biblionumber = $query->param('biblionumber');
39
my $biblionumber = $query->param('biblionumber');
40
$biblionumber = HTML::Entities::encode($biblionumber);
40
$biblionumber = HTML::Entities::encode($biblionumber);
41
my $frameworkcode = $query->param('frameworkcode');
41
my $frameworkcode = $query->param('frameworkcode') // GetFrameworkCode( $biblionumber );
42
$frameworkcode = GetFrameworkCode( $biblionumber ) unless ($frameworkcode);
43
my $popup        =
42
my $popup        =
44
  $query->param('popup')
43
  $query->param('popup')
45
  ;    # if set to 1, then don't insert links, it's just to show the biblio
44
  ;    # if set to 1, then don't insert links, it's just to show the biblio
46
- 

Return to bug 22034