Index: branches/version-2_5-dev/html/require.php
===================================================================
--- branches/version-2_5-dev/html/require.php	(revision 19805)
+++ branches/version-2_5-dev/html/require.php	(revision 19809)
@@ -30,8 +30,16 @@
 require_once HTML_REALDIR . HTML2DATA_DIR . 'require_base.php';
 
-// スマートフォンの場合、リダイレクト
-SC_SmartphoneUserAgent::sfAutoRedirectSmartphoneSite();
-
-// 絵文字変換 (除去) フィルターを組み込む。
-ob_start(array('SC_MobileEmoji', 'handler'));
+if ( Net_UserAgent_Mobile::isMobile() === true ){
+    $objMobile = new SC_Helper_Mobile_Ex();
+    $objMobile->sfMobileInit();
+    ob_start();
+    
+} else {
+	
+	// スマートフォンの場合、リダイレクト
+	SC_SmartphoneUserAgent::sfAutoRedirectSmartphoneSite();
+	
+	// 絵文字変換 (除去) フィルターを組み込む。
+	ob_start(array('SC_MobileEmoji', 'handler'));
+}
 ?>
