Changeset 16636
- Timestamp:
- 2007/10/31 10:27:46 (19 years ago)
- Location:
- branches/feature-module-update
- Files:
-
- 6 edited
-
data/class/pages/campaign/LC_Page_CampaignEntry.php (modified) (1 diff)
-
data/class/pages/contact/LC_Page_Contact.php (modified) (2 diffs)
-
data/class/pages/entry/LC_Page_Entry.php (modified) (2 diffs)
-
data/class/pages/mypage/LC_Page_Mypage_Login.php (modified) (1 diff)
-
data/mtb_constants_init.php (modified) (1 diff)
-
html/install/sql/insert_data.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/pages/campaign/LC_Page_CampaignEntry.php
r16582 r16636 71 71 $CONF = $objView->objSiteInfo->data; 72 72 $objCampaignSess = new SC_CampaignSession(); 73 74 //SSLURL判定75 if (SSLURL_CHECK == 1){76 $ssl_url= sfRmDupSlash(SSL_URL.$_SERVER['REQUEST_URI']);77 if (!ereg("^https://", $non_ssl_url)){78 sfDispSiteError(URL_ERROR);79 }80 }81 73 82 74 // レイアウトデザインを取得 -
branches/feature-module-update/data/class/pages/contact/LC_Page_Contact.php
r16582 r16636 70 70 71 71 $this->arrData = isset($_SESSION['customer']) ? $_SESSION['customer'] : ""; 72 73 //SSLURL判定74 if (SSLURL_CHECK == 1){75 $ssl_url= SC_Utils_Ex::sfRmDupSlash(SSL_URL.$_SERVER['REQUEST_URI']);76 if (!ereg("^https://", $non_ssl_url)){77 SC_Utils_Ex::sfDispSiteError(URL_ERROR);78 }79 }80 72 81 73 // レイアウトデザインを取得 … … 246 238 247 239 function lfSendMail($CONF, &$objPage){ 248 // パスワード変更お知らせメール送信 240 249 241 $objQuery = new SC_Query(); 250 242 $objMailText = new SC_SiteView(); -
branches/feature-module-update/data/class/pages/entry/LC_Page_Entry.php
r16618 r16636 73 73 $CONF = $objDb->sf_getBasisData(); 74 74 $objDate = new SC_Date(START_BIRTH_YEAR, date("Y",strtotime("now"))); 75 //SSLURL判定76 if (SSLURL_CHECK == 1){77 $ssl_url= SC_Utils_Ex::sfRmDupSlash(SSL_URL.$_SERVER['REQUEST_URI']);78 if (!ereg("^https://", $non_ssl_url)){79 // TODO エラーメッセージはデフォルト値でOK?80 SC_Utils_Ex::sfDispSiteError(URL_ERROR);81 }82 }83 75 84 76 // レイアウトデザインを取得 … … 272 264 } 273 265 274 //SSLURL判定275 if (SSLURL_CHECK == 1){276 $ssl_url= SC_Utils_Ex::sfRmDupSlash(MOBILE_SSL_URL.$_SERVER['REQUEST_URI']);277 if (!ereg("^https://", $non_ssl_url)){278 SC_Utils_Ex::sfDispSiteError(URL_ERROR, "", false, "", true);279 }280 }281 282 266 // レイアウトデザインを取得 283 267 $objLayout = new SC_Helper_PageLayout_Ex(); -
branches/feature-module-update/data/class/pages/mypage/LC_Page_Mypage_Login.php
r16582 r16636 62 62 $objCookie = new SC_Cookie(COOKIE_EXPIRE); 63 63 64 //SSLURL判定65 if (SSLURL_CHECK == 1){66 $ssl_url= sfRmDupSlash(SSL_URL.$_SERVER['REQUEST_URI']);67 if (!ereg("^https://", $non_ssl_url)){68 SC_Utils_Ex::sfDispSiteError(URL_ERROR);69 }70 }71 72 64 // ログイン判定 73 65 if($objCustomer->isLoginSuccess()) { -
branches/feature-module-update/data/mtb_constants_init.php
r16586 r16636 128 128 /** 閲覧履歴保存数 */ 129 129 define('CUSTOMER_READING_MAX', 30); 130 /** SSLURL判定 */131 define('SSLURL_CHECK', 0);132 130 /** 管理画面ステータス一覧表示件数 */ 133 131 define('ORDER_STATUS_MAX', 50); -
branches/feature-module-update/html/install/sql/insert_data.sql
r16626 r16636 777 777 INSERT INTO mtb_constants VALUES ('DELIV_ADDR_MAX','20',67,'別のお届け先最大登録数'); 778 778 INSERT INTO mtb_constants VALUES ('CUSTOMER_READING_MAX','30',68,'閲覧履歴保存数'); 779 INSERT INTO mtb_constants VALUES ('SSLURL_CHECK','0',69,'SSLURL判定');780 779 INSERT INTO mtb_constants VALUES ('ORDER_STATUS_MAX','50',70,'管理画面ステータス一覧表示件数'); 781 780 INSERT INTO mtb_constants VALUES ('REVIEW_REGIST_MAX','5',71,'フロントレビュー書き込み最大数');
Note: See TracChangeset
for help on using the changeset viewer.
