Changeset 16134 for branches/feature-module-update/html/require.php
- Timestamp:
- 2007/09/28 10:25:08 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/html/require.php
r16133 r16134 46 46 require_once(CLASS_PATH . "helper_extends/SC_Helper_Mail_Ex.php"); 47 47 include_once($include_dir . "/require_plugin.php"); 48 49 // 携帯端末の場合は mobile 以下へリダイレクトする。 50 if (GC_MobileUserAgent::isMobile()) { 51 if (preg_match('|^' . URL_DIR . '(.*)$|', $_SERVER['REQUEST_URI'], $matches)) { 52 $path = $matches[1]; 53 } else { 54 $path = ''; 55 } 56 57 header("Location: " 58 . SC_Utils_Ex::sfRmDupSlash(SITE_URL . URL_DIR . "mobile/" . $path)); 59 exit; 60 } 61 62 // 絵文字変換 (除去) フィルターを組み込む。 63 ob_start(array('GC_MobileEmoji', 'handler')); 64 65 // アップデートで取得したPHPを読み出す 66 SC_Utils_Ex::sfLoadUpdateModule(); 48 67 ?>
Note: See TracChangeset
for help on using the changeset viewer.