Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/upgrade/LC_Page_Upgrade_Base.php

    r22567 r22796  
    1212 * @version $Id$ 
    1313 */ 
    14 class LC_Page_Upgrade_Base extends LC_Page_Ex  
    15 { 
    16     function isValidIP() 
    17     { 
     14class LC_Page_Upgrade_Base extends LC_Page_Ex { 
     15    function isValidIP() { 
    1816        $objLog  = new LC_Upgrade_Helper_Log; 
    1917        $masterData = new SC_DB_MasterData_Ex(); 
     
    3634     * @return boolean 
    3735     */ 
    38     function autoUpdateEnable($product_id) 
    39     { 
     36    function autoUpdateEnable($product_id) { 
    4037        $where = 'module_id = ?'; 
    4138        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    5855     * @return string|object レスポンスボディ|エラー時にはPEAR::Errorオブジェクトを返す. 
    5956     */ 
    60     function request($mode, $arrParams = array(), $arrCookies = array()) 
    61     { 
     57    function request($mode, $arrParams = array(), $arrCookies = array()) { 
    6258        $objReq = new HTTP_Request(); 
    6359        $objReq->setUrl(OSTORE_URL . 'upgrade/index.php'); 
     
    8076    } 
    8177 
    82     function isLoggedInAdminPage() 
    83     { 
     78    function isLoggedInAdminPage() { 
    8479        $objSess = new SC_Session_Ex(); 
    8580 
     
    9590     * @return string 
    9691     */ 
    97     function createSeed() 
    98     { 
     92    function createSeed() { 
    9993        return sha1(uniqid(rand(), true) . time()); 
    10094    } 
    10195 
    102     function getPublicKey() 
    103     { 
     96    function getPublicKey() { 
    10497        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    10598        $arrRet = $objQuery->select('*', 'dtb_ownersstore_settings'); 
     
    112105     * オーナーズストアからの POST のため, トークンチェックしない. 
    113106     */ 
    114     function doValidToken() 
    115     { 
     107    function doValidToken() { 
    116108        // nothing. 
    117109    } 
Note: See TracChangeset for help on using the changeset viewer.