From b0ca0fc8d99109dc99280822e6d003f7dd27970a Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Tue, 28 Feb 2012 10:30:24 -0500 Subject: [PATCH] Removed extraneous echo statement --- js.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/js.php b/js.php index 5e3b9dc..9c1a8e0 100644 --- a/js.php +++ b/js.php @@ -51,8 +51,6 @@ function google_min($new_file) curl_setopt($ch, CURLOPT_POSTFIELDS, 'output_info=compiled_code&output_format=text&compilation_level=SIMPLE_OPTIMIZATIONS&js_code=' . urlencode($new_file)); $output = curl_exec($ch); curl_close($ch); - echo 'Minified code created
'; - return $output; }