Changeset 38015 for trunk/src/wp-admin/includes/file.php
- Timestamp:
- 07/08/2016 02:36:37 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/file.php
r37598 r38015 570 570 return new WP_Error('fs_unavailable', __('Could not access filesystem.')); 571 571 572 // Unzip can use a lot of memory, but not this much hopefully 573 /** This filter is documented in wp-admin/admin.php */ 574 @ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', WP_MAX_MEMORY_LIMIT ) ); 572 // Unzip can use a lot of memory, but not this much hopefully. 573 wp_raise_memory_limit( 'admin' ); 575 574 576 575 $needed_dirs = array();
Note: See TracChangeset
for help on using the changeset viewer.