PluginProbe
Code Profiler – WordPress Performance Profiling and Debugging Made Easy / 1.9.2
Code Profiler – WordPress Performance Profiling and Debugging Made Easy v1.9.2
1.9.5 1.9.4 1.9.3 trunk 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.6 1.6.1 1.6.10 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 All 40 releases
← All changes | lib/class-cli.php +2 -2 trunk1.9.2 View file →
@@ -88,9 +88,9 @@
88 88 $progress->tick();
89 89 }
90 90
91 91 // Run the profiler
92 - $response = json_decode( CodeProfiler_helpers::codeprofiler_start_profiler(), true );
92 + $response = json_decode( codeprofiler_start_profiler(), true );
93 93 if ( $response === false ) {
94 94 $message = __('Unknown error returned by AJAX', 'code-profiler');
95 95 WP_CLI::error( $message );
96 96 exit;
@@ -105,9 +105,9 @@
105 105 }
106 106
107 107 // All good, run the parser
108 108 $_POST['microtime'] = $response['microtime'];
109 - $response = json_decode( CodeProfiler_helpers::codeprofiler_prepare_report(), true );
109 + $response = json_decode( codeprofiler_prepare_report(), true );
110 110 if ( $response === false ) {
111 111 $message = __('Unknown error returned by AJAX', 'code-profiler');
112 112 WP_CLI::error( $message );
113 113 exit;