Changes between Initial Version and Version 1 of Ticket #45482
- Timestamp:
- 12/04/2018 02:50:40 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #45482 – Description
initial v1 1 1 For WordPress installations on PHP 5.2.17, 2 2 WordPress fails to run correctly because of a PHP bug, PHP reports this error: 3 4 {{{ 3 5 Backend fatal error: PHP Fatal error: Cannot use assign-op operators with overloaded objects nor string offsets in /wp-includes/functions.php on line 3346 6 }}} 4 7 5 8 Those lines are causing the problems: 9 {{{ 6 10 $mce_init['plugins'] .= ',directionality'; 7 11 $mce_init['toolbar1'] .= ',ltr'; 12 }}} 8 13 9 14 Changing those lines to: 15 {{{ 10 16 $mce_init['plugins'] = $mce_init['plugins'] . ',directionality'; 11 17 $mce_init['toolbar1'] = $mce_init['toolbar1'] . ',ltr'; 18 }}} 12 19 13 20 Respectively, fixes the issues for this PHP version.