Index: branches/version-2_12-dev/html/user_data/packages/admin/js/ownersstore.js.php
===================================================================
--- branches/version-2_12-dev/html/user_data/packages/admin/js/ownersstore.js.php	(revision 21481)
+++ branches/version-2_12-dev/html/user_data/packages/admin/js/ownersstore.js.php	(revision 21514)
@@ -40,5 +40,5 @@
     // remove ajax window
     remove: function() {
-        $("#TB_window").fadeOut(
+        $('#TB_window').fadeOut(
             'fast',
             function(){
@@ -46,5 +46,5 @@
             }
         );
-        $("#TB_load").remove();
+        $('#TB_load').remove();
         //if IE 6
         if (typeof document.body.style.maxHeight == 'undefined') {
@@ -63,5 +63,5 @@
             if (document.getElementById('TB_HideSelect') === null) {
                 $('body').append("<iframe id='TB_HideSelect'></iframe><div id='TB_overlay'></div><div id='TB_window'></div>");
-                $("#TB_overlay").click(this.remove);
+                $('#TB_overlay').click(this.remove);
             }
         //all others
@@ -69,5 +69,5 @@
             if (document.getElementById('TB_overlay') === null) {
                 $('body').append("<div id='TB_overlay'></div><div id='TB_window'></div>");
-                $("#TB_overlay").click(this.remove);
+                $('#TB_overlay').click(this.remove);
             }
         }
@@ -75,8 +75,8 @@
         if (this.detectMacFF()) {
             //use png overlay so hide flash
-            $("#TB_overlay").addClass('TB_overlayMacFFBGHack');
+            $('#TB_overlay').addClass('TB_overlayMacFFBGHack');
         } else {
             //use background and opacity
-            $("#TB_overlay").addClass('TB_overlayBG');
+            $('#TB_overlay').addClass('TB_overlayBG');
         }
 
@@ -86,5 +86,5 @@
             + "  <p style='color:#ffffff'>" + loading_message + "</p>"
             + "  <img src='" + loading_img.src + "' />"
-            + "</div>"
+            + '</div>'
         );
         $('#TB_load').show();
@@ -101,31 +101,31 @@
         var ajaxContentH = TB_HEIGHT - 45;
 
-        if ($("#TB_window").css('display') != 'block') {
-            $("#TB_window").append(
+        if ($('#TB_window').css('display') != 'block') {
+            $('#TB_window').append(
                 "<div id='TB_title'>"
               + "  <div id='TB_ajaxWindowTitle'></div>"
               + "  <div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton' onclick='OwnersStore.remove();'>close</a></div>"
-              + "</div>"
+              + '</div>'
               + "<div id='TB_ajaxContent' style='width:" + ajaxContentW + "px;height:" + ajaxContentH + "px'>"
-              + "</div>"
+              + '</div>'
             );
          //this means the window is already up, we are just loading new content via ajax
         } else {
-            $("#TB_ajaxContent")[0].style.width = ajaxContentW +'px';
-            $("#TB_ajaxContent")[0].style.height = ajaxContentH +'px';
-            $("#TB_ajaxContent")[0].scrollTop = 0;
+            $('#TB_ajaxContent')[0].style.width = ajaxContentW +'px';
+            $('#TB_ajaxContent')[0].style.height = ajaxContentH +'px';
+            $('#TB_ajaxContent')[0].scrollTop = 0;
         }
 
-        $("#TB_load").remove();
-        $("#TB_window").css({marginLeft: '-' + parseInt((TB_WIDTH / 2),10) + 'px', width: TB_WIDTH + 'px'});
+        $('#TB_load').remove();
+        $('#TB_window').css({marginLeft: '-' + parseInt((TB_WIDTH / 2),10) + 'px', width: TB_WIDTH + 'px'});
 
         // take away IE6
         if (!(jQuery.browser.msie && jQuery.browser.version < 7)) {
-            $("#TB_window").css({marginTop: '-' + parseInt((TB_HEIGHT / 2),10) + 'px'});
+            $('#TB_window').css({marginTop: '-' + parseInt((TB_HEIGHT / 2),10) + 'px'});
         }
 
-        $("#TB_ajaxWindowTitle").html(title);
-        $("#TB_ajaxContent").html(contents);
-        $("#TB_window").css({display:'block'});
+        $('#TB_ajaxWindowTitle').html(title);
+        $('#TB_ajaxContent').html(contents);
+        $('#TB_window').css({display:'block'});
 
         // DL成功時に設定ボタンを表示
Index: branches/version-2_12-dev/html/user_data/plugins/google_analytics/classes/pages/LC_Page_Admin_GoogleAnalytics.php
===================================================================
--- branches/version-2_12-dev/html/user_data/plugins/google_analytics/classes/pages/LC_Page_Admin_GoogleAnalytics.php	(revision 21481)
+++ branches/version-2_12-dev/html/user_data/plugins/google_analytics/classes/pages/LC_Page_Admin_GoogleAnalytics.php	(revision 21514)
@@ -53,9 +53,9 @@
 
         if (empty($_POST['mode'])) {
-            $_POST['mode'] = "";
+            $_POST['mode'] = '';
         }
 
         if (empty($_GET['mode'])) {
-            $_GET['mode'] = "";
+            $_GET['mode'] = '';
         }
     }
@@ -123,5 +123,5 @@
             . htmlspecialchars($ua, ENT_QUOTES) . "');\n?>\n";
 
-        $configFile = $this->arrPluginInfo['fullpath'] . "classes/pages/ga_config.php";
+        $configFile = $this->arrPluginInfo['fullpath'] . 'classes/pages/ga_config.php';
         $handle = fopen($configFile, 'w');
         if (!$handle) {
