Changeset 29330 for trunk/src/wp-includes/functions.php
- Timestamp:
- 07/30/2014 05:27:54 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r29309 r29330 3405 3405 return false; 3406 3406 3407 if ( function_exists( 'apache_get_modules') ) {3407 if ( function_exists( 'apache_get_modules' ) ) { 3408 3408 $mods = apache_get_modules(); 3409 3409 if ( in_array($mod, $mods) ) 3410 3410 return true; 3411 } elseif ( function_exists( 'phpinfo') ) {3411 } elseif ( function_exists( 'phpinfo' ) && false === strpos( ini_get( 'disable_functions' ), 'phpinfo' ) ) { 3412 3412 ob_start(); 3413 3413 phpinfo(8);
Note: See TracChangeset
for help on using the changeset viewer.