Ignore:
Timestamp:
2011/02/25 23:07:43 (15 years ago)
Author:
shutta
Message:

refs #1057
r20313,r20315 の管理画面の認証周りの変更による影響を修正。

Location:
branches/version-2_5-dev/data/class/pages/admin/design
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Template.php

    r20345 r20413  
    8484        $this->tpl_select = $this->getTemplateName($device_type_id); 
    8585 
    86         // uniqidをテンプレートへ埋め込み 
    87         $this->uniqid = $objSession->getUniqId(); 
    88  
    8986        $objView = new SC_AdminView_Ex(); 
    9087 
     
    9390            // 登録ボタン押下時 
    9491        case 'register': 
    95             // 画面遷移の正当性チェック 
    96             if (!SC_Utils::sfIsValidTransition($objSession)) { 
    97                 sfDispError(''); 
    98             } 
    9992            // パラメータ検証 
    10093            $objForm = $this->lfInitRegister(); 
     
    125118            // 削除ボタン押下時 
    126119        case 'delete': 
    127             // 画面遷移の正当性チェック 
    128             if (!SC_Utils::sfIsValidTransition($objSession)) { 
    129                 SC_Utils::sfDispError(''); 
    130             } 
    131120            // パラメータ検証 
    132121            $objForm = $this->lfInitDelete(); 
     
    147136            // downloadボタン押下時 
    148137        case 'download': 
    149             // 画面遷移の正当性チェック 
    150             if (!SC_Utils::sfIsValidTransition($objSession)) { 
    151                 SC_Utils::sfDispError(''); 
    152             } 
    153138            // パラメータ検証 
    154139            $objForm = $this->lfInitDownload(); 
  • branches/version-2_5-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Up_Down.php

    r20345 r20413  
    8282        } 
    8383 
    84         // uniqidをテンプレートへ埋め込み 
    85         $this->uniqid = $objSession->getUniqId(); 
    86  
    8784        switch($this->getMode()) { 
    8885 
     
    9289            // アップロードボタン押下時の処理 
    9390        case 'upload': 
    94             // 画面遷移の正当性チェック 
    95             if (!SC_Utils::sfIsValidTransition($objSession)) { 
    96                 SC_Utils::sfDispError(''); 
    97             } 
    9891            // フォームパラメータ初期化 
    9992            $objForm = $this->lfInitUpload(); 
Note: See TracChangeset for help on using the changeset viewer.