Changeset 17137 for branches/comu-ver2/html/require.php
- Timestamp:
- 2008/03/12 20:20:35 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/comu-ver2/html/require.php
r17110 r17137 92 92 $url = MOBILE_SITE_URL; 93 93 } 94 94 95 95 if (preg_match('|^' . URL_DIR . '(.*)$|', $_SERVER['REQUEST_URI'], $matches)) { 96 96 $path = $matches[1]; … … 98 98 $path = ''; 99 99 } 100 100 101 101 header("Location: ". SC_Utils_Ex::sfRmDupSlash($url . $path)); 102 102 exit; 103 103 } 104 104 105 // セッション初期化・開始 106 require_once CLASS_PATH . 'session/SC_SessionFactory.php'; 107 $sessionFactory = SC_SessionFactory::getInstance(); 108 $sessionFactory->initSession(); 109 105 110 // 絵文字変換 (除去) フィルターを組み込む。 106 111 ob_start(array('SC_MobileEmoji', 'handler'));
Note: See TracChangeset
for help on using the changeset viewer.