Bug #20789 ยป 11593.patch
t3lib/stddb/tables.php (working copy) | ||
---|---|---|
'config' => array(
|
||
'type' => 'input',
|
||
'size' => '30',
|
||
'max' => '30',
|
||
'max' => '255',
|
||
)
|
||
),
|
||
'editlock' => array(
|
t3lib/stddb/tables.sql (working copy) | ||
---|---|---|
t3ver_oid int(11) DEFAULT '0' NOT NULL,
|
||
t3ver_id int(11) DEFAULT '0' NOT NULL,
|
||
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
|
||
t3ver_label varchar(30) DEFAULT '' NOT NULL,
|
||
t3ver_label varchar(255) DEFAULT '' NOT NULL,
|
||
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
|
||
t3ver_stage tinyint(4) DEFAULT '0' NOT NULL,
|
||
t3ver_count int(11) DEFAULT '0' NOT NULL,
|
typo3/sysext/cms/ext_tables.sql (working copy) | ||
---|---|---|
t3ver_oid int(11) DEFAULT '0' NOT NULL,
|
||
t3ver_id int(11) DEFAULT '0' NOT NULL,
|
||
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
|
||
t3ver_label varchar(30) DEFAULT '' NOT NULL,
|
||
t3ver_label varchar(255) DEFAULT '' NOT NULL,
|
||
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
|
||
t3ver_stage tinyint(4) DEFAULT '0' NOT NULL,
|
||
t3ver_count int(11) DEFAULT '0' NOT NULL,
|
||
... | ... | |
t3ver_oid int(11) DEFAULT '0' NOT NULL,
|
||
t3ver_id int(11) DEFAULT '0' NOT NULL,
|
||
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
|
||
t3ver_label varchar(30) DEFAULT '' NOT NULL,
|
||
t3ver_label varchar(255) DEFAULT '' NOT NULL,
|
||
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
|
||
t3ver_stage tinyint(4) DEFAULT '0' NOT NULL,
|
||
t3ver_count int(11) DEFAULT '0' NOT NULL,
|
||
... | ... | |
t3ver_oid int(11) DEFAULT '0' NOT NULL,
|
||
t3ver_id int(11) DEFAULT '0' NOT NULL,
|
||
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
|
||
t3ver_label varchar(30) DEFAULT '' NOT NULL,
|
||
t3ver_label varchar(255) DEFAULT '' NOT NULL,
|
||
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
|
||
t3ver_stage tinyint(4) DEFAULT '0' NOT NULL,
|
||
t3ver_count int(11) DEFAULT '0' NOT NULL,
|
typo3/sysext/cms/tbl_cms.php (working copy) | ||
---|---|---|
'config' => array(
|
||
'type' => 'input',
|
||
'size' => '30',
|
||
'max' => '30',
|
||
'max' => '255',
|
||
)
|
||
),
|
||
),
|
||
... | ... | |
'config' => array(
|
||
'type' => 'input',
|
||
'size' => '30',
|
||
'max' => '30',
|
||
'max' => '255',
|
||
)
|
||
),
|
||
),
|
typo3/sysext/cms/tbl_tt_content.php (working copy) | ||
---|---|---|
'config' => Array (
|
||
'type' => 'input',
|
||
'size' => '30',
|
||
'max' => '30',
|
||
'max' => '255',
|
||
)
|
||
),
|
||
),
|