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

(-)a/C4/AuthoritiesMarc.pm (-1 lines)
Lines 701-707 sub AddAuthority { Link Here
701
    $authority->update(
701
    $authority->update(
702
        {
702
        {
703
            authtypecode => $authtypecode,
703
            authtypecode => $authtypecode,
704
            marc         => $record->as_usmarc,
705
            marcxml      => $record->as_xml_record($format),
704
            marcxml      => $record->as_xml_record($format),
706
            heading      => $heading ? $heading->display_form : '',
705
            heading      => $heading ? $heading->display_form : '',
707
        }
706
        }
(-)a/installer/data/mysql/kohastructure.sql (-1 lines)
Lines 929-935 CREATE TABLE `auth_header` ( Link Here
929
  `heading` longtext DEFAULT NULL,
929
  `heading` longtext DEFAULT NULL,
930
  `origincode` varchar(20) DEFAULT NULL,
930
  `origincode` varchar(20) DEFAULT NULL,
931
  `authtrees` longtext DEFAULT NULL,
931
  `authtrees` longtext DEFAULT NULL,
932
  `marc` blob DEFAULT NULL,
933
  `linkid` bigint(20) DEFAULT NULL,
932
  `linkid` bigint(20) DEFAULT NULL,
934
  `marcxml` longtext NOT NULL,
933
  `marcxml` longtext NOT NULL,
935
  PRIMARY KEY (`authid`),
934
  PRIMARY KEY (`authid`),
(-)a/t/db_dependent/Linker_FirstMatch.t (-2 lines)
Lines 82-88 sub run_tests { Link Here
82
        }
82
        }
83
    );
83
    );
84
    $auth_header_record->marcxml($fake_xml);
84
    $auth_header_record->marcxml($fake_xml);
85
    $auth_header_record->marc($fake_marc);
86
    $auth_header_record->update;
85
    $auth_header_record->update;
87
86
88
    # Find a particular series field.
87
    # Find a particular series field.
89
- 

Return to bug 26684