Reason: ExtJs fails if ExtCore is loaded.
ExtCore is a "small" compilation of ExtJS just for some little widgets and effects.
Resolves: #M17994
Change-Id: I5f676af89c981e0d6aea08ffa4c0db10324f0a0e
Reviewed-on: http://review.typo3.org/1212
Reviewed-by: Steffen Kamper <info@sk-typo3.de>
Tested-by: Steffen Kamper <info@sk-typo3.de>
Reviewed-by: Helmut Hummel <typo3@helmut-hummel.de>
unset($this->jsFiles[$this->backPath . $this->scriptaculousPath . 'scriptaculous.js']);
}
- // include extCore
- if ($this->addExtCore) {
+ // include extCore, but only if ExtJS is not included
+ if ($this->addExtCore && !$this->addExtJS) {
$out .= '<script src="' . $this->processJsFile($this->backPath .
$this->extCorePath . 'ext-core' . ($this->enableExtCoreDebug ? '-debug' : '') . '.js') .
'" type="text/javascript"></script>' . LF;