Skip to content
Snippets Groups Projects
Commit 415cd2a7 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[BUGFIX] Ensure PHP 5.3 compatibility

parent 16d683b3
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ class Loader {
*
* @var array
*/
protected $tinymceConfiguration = [];
protected $tinymceConfiguration = array();
/**
* Initialization flag
......@@ -220,7 +220,7 @@ class Loader {
* @return array
*/
protected function prepareTinyMCEConfiguration($configuration) {
$configurationArray = [];
$configurationArray = array();
// try to resolve a potential TYPO3 file path
$configurationFile = GeneralUtility::getFileAbsFileName($configuration);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment