Changeset 20449
- Timestamp:
- 2011/02/28 20:58:16 (10 years ago)
- Location:
- branches/version-2_5-dev/data
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/helper/SC_Helper_Session.php
r20384 r20449 241 241 } 242 242 if ($is_auth) { 243 SC_Utils_Ex::sfIsSuccess(new SC_Session ());243 SC_Utils_Ex::sfIsSuccess(new SC_Session_Ex()); 244 244 } 245 245 } -
branches/version-2_5-dev/data/class/pages/admin/LC_Page_Admin_Index.php
r20345 r20449 184 184 */ 185 185 function lfSetLoginSession($member_id, $login_id, $authority, $login_name, $last_login) { 186 $objSess = new SC_Session ();186 $objSess = new SC_Session_Ex(); 187 187 // 認証済みの設定 188 188 $objSess->SetSession('cert', CERT_STRING); -
branches/version-2_5-dev/data/class/pages/admin/LC_Page_Admin_Logout.php
r20345 r20449 72 72 */ 73 73 function lfDoLogout() { 74 $objSess = new SC_Session ();74 $objSess = new SC_Session_Ex(); 75 75 $objSess->logout(); 76 76 } -
branches/version-2_5-dev/data/class/pages/preview/LC_Page_Preview.php
r20344 r20449 53 53 function process() { 54 54 $objView = new SC_SiteView_Ex(); 55 $objSess = new SC_Session ();55 $objSess = new SC_Session_Ex(); 56 56 57 57 SC_Utils_Ex::sfIsSuccess($objSess); -
branches/version-2_5-dev/data/class/pages/products/LC_Page_Products_Detail.php
r20444 r20449 287 287 // 管理機能からの確認の場合は、非公開の商品も表示する。 288 288 if (isset($admin_mode) && $admin_mode == 'on') { 289 SC_Utils_Ex::sfIsSuccess(new SC_Session ());289 SC_Utils_Ex::sfIsSuccess(new SC_Session_Ex()); 290 290 $status = true; 291 291 $where = 'del_flg = 0'; -
branches/version-2_5-dev/data/class/pages/upgrade/LC_Page_Upgrade_Base.php
r20344 r20449 75 75 76 76 function isLoggedInAdminPage() { 77 $objSess = new SC_Session ;77 $objSess = new SC_Session_Ex(); 78 78 79 79 if ($objSess->isSuccess() === SUCCESS) { -
branches/version-2_5-dev/data/require_classes.php
r20448 r20449 33 33 require_once(CLASS_EX_REALDIR . "SC_MobileView_Ex.php"); 34 34 require_once(CLASS_EX_REALDIR . "SC_SmartphoneView_Ex.php"); 35 require_once(CLASS_ REALDIR . "SC_Session.php");35 require_once(CLASS_EX_REALDIR . "SC_Session_Ex.php"); 36 36 require_once(CLASS_REALDIR . "SC_Query.php"); 37 37 require_once(CLASS_REALDIR . "SC_SelectSql.php");
Note: See TracChangeset
for help on using the changeset viewer.