mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-09 01:16:08 +01:00
Fixed bug #16574: PHP notices from XCLASS inclusions
git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@9758 709f56b5-9817-0410-a4d7-c38de5d9e867
This commit is contained in:
parent
f437aa0020
commit
bfcecb9872
1 changed files with 2 additions and 2 deletions
|
@ -418,8 +418,8 @@ class tx_feedit_editpanel {
|
|||
|
||||
}
|
||||
|
||||
if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/feedit/view/class.tx_feedit_editpanel.php']) {
|
||||
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/feedit/view/class.tx_feedit_editpanel.php']);
|
||||
if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['ext/feedit/view/class.tx_feedit_editpanel.php'])) {
|
||||
include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['ext/feedit/view/class.tx_feedit_editpanel.php']);
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in a new issue