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

(-)a/Makefile.PL (+1 lines)
Lines 383-388 my $target_map = { Link Here
383
  './suggestion'                => 'INTRANET_CGI_DIR',
383
  './suggestion'                => 'INTRANET_CGI_DIR',
384
  './svc'                       => 'INTRANET_CGI_DIR',
384
  './svc'                       => 'INTRANET_CGI_DIR',
385
  './t'                         => 'NONE',
385
  './t'                         => 'NONE',
386
  './xt'                        => 'NONE',
386
  './tags'                      => 'INTRANET_CGI_DIR',
387
  './tags'                      => 'INTRANET_CGI_DIR',
387
  './tmp'                       => 'NONE', # FIXME need to determine whether
388
  './tmp'                       => 'NONE', # FIXME need to determine whether
388
                                           # Koha generates any persistent temp files
389
                                           # Koha generates any persistent temp files
(-)a/catalogue/detail.pl (-1 / +2 lines)
Lines 494-499 if (C4::Context->preference("virtualshelves") ) { Link Here
494
# XISBN Stuff
494
# XISBN Stuff
495
if (C4::Context->preference("FRBRizeEditions")==1) {
495
if (C4::Context->preference("FRBRizeEditions")==1) {
496
    eval {
496
    eval {
497
            my @xxx = get_xisbns($isbn, $biblionumber);
498
            use Data::Printer colored => 1; warn p @xxx;
497
        $template->param(
499
        $template->param(
498
            XISBNS => scalar get_xisbns($isbn, $biblionumber)
500
            XISBNS => scalar get_xisbns($isbn, $biblionumber)
499
        );
501
        );
500
- 

Return to bug 26265