Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #45482


Ignore:
Timestamp:
12/04/2018 02:50:40 PM (7 years ago)
Author:
swissspidy
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #45482 – Description

    initial v1  
    11For WordPress installations on PHP 5.2.17,
    22WordPress fails to run correctly because of a PHP bug, PHP reports this error:
     3
     4{{{
    35Backend 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}}}
    47
    58Those lines are causing the problems:
     9{{{
    610$mce_init['plugins'] .= ',directionality';
    711$mce_init['toolbar1'] .= ',ltr';
     12}}}
    813
    914Changing those lines to:
     15{{{
    1016$mce_init['plugins'] = $mce_init['plugins'] . ',directionality';
    1117$mce_init['toolbar1'] = $mce_init['toolbar1'] . ',ltr';
     18}}}
    1219
    1320Respectively, fixes the issues for this PHP version.