Index: /branches/camp/camp-2_5-E/data/class/SC_Plugin.php
===================================================================
--- /branches/camp/camp-2_5-E/data/class/SC_Plugin.php	(revision 19502)
+++ /branches/camp/camp-2_5-E/data/class/SC_Plugin.php	(revision 19503)
@@ -56,12 +56,13 @@
 
     function disablePlugin(){
-      $objQuery = new SC_Query();
-      $name = preg_replace("/.php/", "", __FILE__);
-      $objQuery->update("dtb_plugin", array('enable'=>'0'), "plugin_name = ?", array($name));
-      
+        $objQuery = new SC_Query();
+        $name = preg_replace("/.php/", "", __FILE__);
+        $objQuery->update("dtb_plugin", array('enable'=>'0'), "plugin_name = ?", array($name));
     }
 
     function enablePlugin(){
-    
+        $objQuery = new SC_Query();
+        $name = preg_replace("/.php/", "", __FILE__);
+        $objQuery->update("dtb_plugin", array('enable'=>'0'), "plugin_name = ?", array($name));
     }
 
