+2011-02-25 Steffen Kamper <steffen@typo3.org>
+
+ * Fixed bug #17769: Em use wrong property for db updates
+
2011-02-25 Ernesto Baschny <ernst@cron-it.de>
* Fixed bug #17732: Install Tool doing Fatal error when APC PHP module is loaded (no session is stored)
/** @var $install tx_em_Install */
$install = t3lib_div::makeInstance('tx_em_Install');
$install->setSilentMode(TRUE);
- $install->INSTALL = $parameter['TYPO3_INSTALL'];
+ $install->install->INSTALL = $parameter['TYPO3_INSTALL'];
$install->checkDBupdates($extKey, $list[$extKey]);
$html = '';
*
* @var t3lib_install
*/
- protected $install;
+ public $install;
+ /**
+ * @var integer
+ */
protected $systemInstall = 0; // If "1" then installs in the sysext directory is allowed. Default: 0
/**