Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #42085


Ignore:
Timestamp:
10/04/2017 01:25:06 PM (7 years ago)
Author:
SergeyBiryukov
Comment:

Previously: #37680

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #42085

    • Property Component changed from General to Bootstrap/Load
  • Ticket #42085 – Description

    initial v1  
    11For some PHP configurations, the check function_exists does not suffice.
    2 
     2{{{
    33Warning: ini_get_all() has been disabled for security reasons in /home/mysite/public_html/wp-includes/load.php on line 1027
    4 
     4}}}
    55Suggested fix in wp_is_ini_value_changeable()
    6 
     6{{{
    77  if ( ! isset( $ini_all ) ) {
    88    $ini_all = false;
     
    1616    }
    1717  }
     18}}}