Index: /branches/version-2_12-dev/html/require.php
===================================================================
--- /branches/version-2_12-dev/html/require.php	(revision 21474)
+++ /branches/version-2_12-dev/html/require.php	(revision 21776)
@@ -39,5 +39,8 @@
 
 if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) {
-    $objMobile = new SC_Helper_Mobile_Ex();
-    $objMobile->sfMobileInit();
+    // resize_image.phpは除外
+    if (stripos($_SERVER['REQUEST_URI'], ROOT_URLPATH . 'resize_image.php') === FALSE) {
+        $objMobile = new SC_Helper_Mobile_Ex();
+        $objMobile->sfMobileInit();
+    }
 }
Index: /branches/version-2_12-dev/data/class/SC_MobileImage.php
===================================================================
--- /branches/version-2_12-dev/data/class/SC_MobileImage.php	(revision 21658)
+++ /branches/version-2_12-dev/data/class/SC_MobileImage.php	(revision 21776)
@@ -95,4 +95,9 @@
             // HTML中のIMGタグを変換後のファイルパスに置換する
             foreach ($images[1] as $key => $path) {
+                // resize_image.phpは除外
+                if (stripos($path, ROOT_URLPATH . 'resize_image.php') !== FALSE) {
+                    break;
+                }
+
                 $realpath = html_entity_decode($path, ENT_QUOTES);
                 $realpath = preg_replace('|^' . ROOT_URLPATH . '|', HTML_REALDIR, $realpath);
Index: /branches/version-2_12-dev/data/class/pages/LC_Page_ResizeImage.php
===================================================================
--- /branches/version-2_12-dev/data/class/pages/LC_Page_ResizeImage.php	(revision 21764)
+++ /branches/version-2_12-dev/data/class/pages/LC_Page_ResizeImage.php	(revision 21776)
@@ -54,5 +54,4 @@
         parent::process();
         $this->action();
-        $this->sendResponse();
     }
 
