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

(-)a/installer/data/mysql/kohastructure.sql (+1 lines)
Lines 1427-1432 CREATE TABLE `borrower_modifications` ( Link Here
1427
  `extended_attributes` mediumtext DEFAULT NULL,
1427
  `extended_attributes` mediumtext DEFAULT NULL,
1428
  `gdpr_proc_consent` datetime DEFAULT NULL COMMENT 'data processing consent',
1428
  `gdpr_proc_consent` datetime DEFAULT NULL COMMENT 'data processing consent',
1429
  `primary_contact_method` varchar(45) DEFAULT NULL COMMENT 'useful for reporting purposes',
1429
  `primary_contact_method` varchar(45) DEFAULT NULL COMMENT 'useful for reporting purposes',
1430
  `lang` varchar(25) DEFAULT NULL,
1430
  PRIMARY KEY (`verification_token`(191),`borrowernumber`),
1431
  PRIMARY KEY (`verification_token`(191),`borrowernumber`),
1431
  KEY `verification_token` (`verification_token`(191)),
1432
  KEY `verification_token` (`verification_token`(191)),
1432
  KEY `borrowernumber` (`borrowernumber`)
1433
  KEY `borrowernumber` (`borrowernumber`)
(-)a/opac/opac-memberentry.pl (-3 lines)
Lines 100-107 if ( defined $min ) { Link Here
100
     );
100
     );
101
 }
101
 }
102
102
103
my $defaultCategory = Koha::Patron::Categories->find(C4::Context->preference('PatronSelfRegistrationDefaultCategory'));
104
105
my $translated_languages = C4::Languages::getTranslatedLanguages( 'opac', C4::Context->preference('template') );
103
my $translated_languages = C4::Languages::getTranslatedLanguages( 'opac', C4::Context->preference('template') );
106
104
107
$template->param(
105
$template->param(
108
- 

Return to bug 34438