[Typo3-dev] Trying to fix the plugin 'erotea_date2cal'
tapio
tapio.markula at dnainternet.net
Wed Aug 24 18:20:32 CEST 2005
Hi
'erotea_date2cal' doesn't work with 'Quick Edit' mode
because it doesn't have intialization for 'db_layout.php', which this
mode uses.
The author was not interested to fix this bug.
I tried to fix the plugin
1) I added a row a row to 'ext_localconf.php'
$TYPO3_CONF_VARS["BE"]["XCLASS"]["typo3/sysext/cms/layout/db_layout.php"]
= t3lib_extMgm::extPath($_EXTKEY) . 'class.ux_sc_db_layout.php';
2) I added the file 'class.ux_sc_db_layout.php', where
class ux_SC_db_layout extends SC_db_layout {
function init() {
parent::init();
...
basically the same stuff as in
class.ux_sc_alt_doc.php
...
}
}
doesn't work.
More information about the TYPO3-dev
mailing list