summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
c0fa579)
+2011-02-06 Steffen Kamper <steffen@typo3.org>
+
+ * Fixed bug #17464: ExtDirectCode is added twice
+
2011-02-05 Steffen Kamper <steffen@typo3.org>
* Fixed bug #17413: ExtJs Theme - use grey folder items for tree by default
2011-02-05 Steffen Kamper <steffen@typo3.org>
* Fixed bug #17413: ExtJs Theme - use grey folder items for tree by default
protected $addExtJS = FALSE;
protected $addExtCore = FALSE;
protected $extJSadapter = 'ext/ext-base.js';
protected $addExtJS = FALSE;
protected $addExtCore = FALSE;
protected $extJSadapter = 'ext/ext-base.js';
+ protected $extDirectCodeAdded = FALSE;
protected $enableExtJsDebug = FALSE;
protected $enableExtCoreDebug = FALSE;
protected $enableExtJsDebug = FALSE;
protected $enableExtCoreDebug = FALSE;
protected $addSvg = FALSE;
protected $enableSvgDebug = FALSE;
protected $addSvg = FALSE;
protected $enableSvgDebug = FALSE;
// used by BE modules
public $backPath;
// used by BE modules
public $backPath;
* @return void
*/
public function addExtDirectCode() {
* @return void
*/
public function addExtDirectCode() {
+ if ($this->extDirectCodeAdded) {
+ return;
+ }
+ $this->extDirectCodeAdded = TRUE;
$token = '';
if (TYPO3_MODE === 'BE') {
$formprotection = t3lib_formprotection_Factory::get();
$token = '';
if (TYPO3_MODE === 'BE') {
$formprotection = t3lib_formprotection_Factory::get();