Changes between Initial Version and Version 1 of Ticket #42085
- Timestamp:
- 10/04/2017 01:25:06 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #42085
-
Property
Component
changed from
General
toBootstrap/Load
-
Property
Component
changed from
-
Ticket #42085 – Description
initial v1 1 1 For some PHP configurations, the check function_exists does not suffice. 2 2 {{{ 3 3 Warning: ini_get_all() has been disabled for security reasons in /home/mysite/public_html/wp-includes/load.php on line 1027 4 4 }}} 5 5 Suggested fix in wp_is_ini_value_changeable() 6 6 {{{ 7 7 if ( ! isset( $ini_all ) ) { 8 8 $ini_all = false; … … 16 16 } 17 17 } 18 }}}