From 6e91849a49f3b4344ba264e47e43e634e47fae97 Mon Sep 17 00:00:00 2001
From: JohnAlbin <virtually.johnalbin@gmail.com>
Date: Sat, 5 May 2012 23:43:24 +0800
Subject: [PATCH] Issue #1541862: Default to Production

---
 speedy.module |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/speedy.module b/speedy.module
index e1a0053..21a220f 100644
--- a/speedy.module
+++ b/speedy.module
@@ -18,7 +18,7 @@ function speedy_form_system_performance_settings_alter(&$form, &$form_state) {
   $form['bandwidth_optimization']['speedy_js_production'] = array(
     '#type' => 'checkbox',
     '#title' => t('Use minified JS files created by Speedy'),
-    '#default_value' => variable_get('speedy_js_production', FALSE),
+    '#default_value' => variable_get('speedy_js_production', TRUE),
     '#description' => t('Enabling this will replace non-minified Drupal core
      Javascript files with a minfied version.'),
   );
@@ -32,7 +32,7 @@ function speedy_form_system_performance_settings_alter(&$form, &$form_state) {
  */
 function speedy_js_alter(&$javascript) {
   // Ensure that Speedy is enabled
-  if (! variable_get('speedy_js_production', FALSE)) {
+  if (! variable_get('speedy_js_production', TRUE)) {
     return;
   }
   // Manage the map of replacements. This is cached so we don't have to hit the
-- 
1.7.10

