Actions
Bug #89714
closedC-style comment in ext_tables.sql breaks following table definition
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2019-11-20
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
A C-style comment before a table definition will cause this table definition to be ignorend.
Example:
Definition of table1 will be ignored, while table2 is taken into account.
/*
Some text (or older table defintions)
*/
#
# Table structure for table 'table1'
#
CREATE TABLE table1 (
header varchar(255) DEFAULT '' NOT NULL,
bodytext text
);
#
# Table structure for table 'table2'
#
CREATE TABLE table2 (
header varchar(255) DEFAULT '' NOT NULL,
bodytext text
);
Actions