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

(-)a/C4/AuthoritiesMarc.pm (-1 lines)
Lines 705-711 sub AddAuthority { Link Here
705
    $authority->update(
705
    $authority->update(
706
        {
706
        {
707
            authtypecode => $authtypecode,
707
            authtypecode => $authtypecode,
708
            marc         => $record->as_usmarc,
709
            marcxml      => $record->as_xml_record($format),
708
            marcxml      => $record->as_xml_record($format),
710
            heading      => $heading ? $heading->display_form : '',
709
            heading      => $heading ? $heading->display_form : '',
711
        }
710
        }
(-)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 74-80 sub run_tests { Link Here
74
74
75
    my $auth_header_record = $schema->resultset('AuthHeader')->find( { authid => $authid } );
75
    my $auth_header_record = $schema->resultset('AuthHeader')->find( { authid => $authid } );
76
    $auth_header_record->marcxml($fake_xml);
76
    $auth_header_record->marcxml($fake_xml);
77
    $auth_header_record->marc($fake_marc);
78
    $auth_header_record->update;
77
    $auth_header_record->update;
79
78
80
    # Find a particular series field.
79
    # Find a particular series field.
81
- 

Return to bug 26684