Bug #21108 » rfc12019-v2.diff
typo3/sysext/install/mod/class.tx_install.php (working copy) | ||
---|---|---|
',-1);
|
||
} else {
|
||
$this->message($tLabel,'Invalid table and field definitions in $TCA!','
|
||
There are some tables and/or fields configured in the \$TCA array which does not exist in the database!
|
||
There are some tables and/or fields configured in the $TCA array which do not exist in the database!
|
||
This will most likely cause you trouble with the TYPO3 backend interface!
|
||
',3);
|
||
while(list($tableName, $conf)=each($cmpTCA_DB['extra'])) {
|
||
... | ... | |
$out.='<tr><td class="tcaTableBackground">'.$this->fw($fieldname).'</td><td class="tcaTableBackground">'.$fieldContent.'</td></tr>';
|
||
}
|
||
}
|
||
$out= '<table border="0" cellpadding="0" cellspacing="0">'.$out.'</table>';
|
||
$out = '<table border="0" cellpadding="0" cellspacing="1">' . $out . '</table>';
|
||
return $out;
|
||
}
|
||
typo3/sysext/install/mod/install.css (working copy) | ||
---|---|---|
.tcaTableHeader {
|
||
background-color: #b3b7bd;
|
||
padding: 2px;
|
||
}
|
||
.tcaTableBackground {
|
||
background-color: #e4e5f0;
|
||
padding: 2px;
|
||
}
|
||
/* Styles for messages (matching flash messages) */
|
||
- « Previous
- 1
- 2
- 3
- 4
- Next »