Skip to content
This repository has been archived by the owner on Jul 2, 2018. It is now read-only.

Commit

Permalink
fix localization error in address model
Browse files Browse the repository at this point in the history
  • Loading branch information
Georg Duemmler committed Sep 12, 2016
1 parent af191d4 commit 3670926
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions Configuration/TCA/tx_bwrkaddress_domain_model_address.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
'collapseAll' => true,
'useSortable' => true,
'showHeader' => false,
'showPossibleLocalizationRecords' => true,

'enabledControls' => array(
'sort' => false,
Expand Down
8 changes: 6 additions & 2 deletions ext_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,16 @@ CREATE TABLE tx_bwrkaddress_domain_model_address (
t3ver_move_id int(11) DEFAULT '0' NOT NULL,

t3_origuid int(11) DEFAULT '0' NOT NULL,
editlock tinyint(4) unsigned DEFAULT '0' NOT NULL,
fe_group varchar(100) DEFAULT '' NOT NULL,
sys_language_uid int(11) DEFAULT '0' NOT NULL,
l10n_parent int(11) DEFAULT '0' NOT NULL,
l10n_diffsource mediumblob,

PRIMARY KEY (uid),
KEY parent (pid),
KEY t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
KEY sys_language_uid_l10n_parent (sys_language_uid,l10n_parent)
);

/*
Expand Down Expand Up @@ -81,12 +83,14 @@ CREATE TABLE tx_bwrkaddress_domain_model_address_entry (
t3ver_move_id int(11) DEFAULT '0' NOT NULL,

t3_origuid int(11) DEFAULT '0' NOT NULL,
editlock tinyint(4) unsigned DEFAULT '0' NOT NULL,
fe_group varchar(100) DEFAULT '' NOT NULL,
sys_language_uid int(11) DEFAULT '0' NOT NULL,
l10n_parent int(11) DEFAULT '0' NOT NULL,
l10n_diffsource mediumblob,

PRIMARY KEY (uid),
KEY parent (pid),
KEY t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
KEY sys_language_uid_l10n_parent (sys_language_uid,l10n_parent)
);

0 comments on commit 3670926

Please sign in to comment.