Changeset 47762 for trunk/src/wp-admin/includes/class-wp-site-health.php
- Timestamp:
- 05/05/2020 06:56:44 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health.php
r47628 r47762 19 19 private $health_check_mysql_rec_version = ''; 20 20 21 public $php_memory_limit; 22 21 23 public $schedules; 22 24 public $crons; … … 33 35 public function __construct() { 34 36 $this->maybe_create_scheduled_event(); 37 38 // Save memory limit before it's affected by wp_raise_memory_limit( 'admin' ). 39 $this->php_memory_limit = ini_get( 'memory_limit' ); 35 40 36 41 $this->timeout_late_cron = 0;
Note: See TracChangeset
for help on using the changeset viewer.