Changeset 20348


Ignore:
Timestamp:
2011/02/23 18:49:46 (15 years ago)
Author:
nanasess
bzr:base-revision:
[email protected]
bzr:committer:
Kentaro Ohkouchi <[email protected]>
bzr:file-ids:

data/class/pages/admin/customer/LC_Page_Admin_Customer_SearchCustomer.php 18068@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Fcomu-ver2%2Fdata%2Fclass%2Fpages%2Fadmin%2Fcustomer%2FLC_Page_Admin_Customer_SearchCustomer.php
data/class/pages/admin/products/LC_Page_Admin_Products_ProductSelect.php 15557@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fadmin%2Fproducts%2FLC_Page_Admin_Products_ProductSelect.php
bzr:mapping-version:
v4
bzr:merge:

[email protected]
bzr:repository-uuid:
1e3b908f-19a9-db11-a64c-001125224ba8
bzr:revision-id:
[email protected]
bzr:revno:
3076
bzr:revprop:branch-nick:
branches/version-2_5-dev
bzr:root:
branches/version-2_5-dev
bzr:text-revisions:

data/class/pages/admin/customer/LC_Page_Admin_Customer_SearchCustomer.php [email protected]
data/class/pages/admin/products/LC_Page_Admin_Products_ProductSelect.php [email protected]
bzr:timestamp:
2011-02-23 18:49:28.566999912 +0900
bzr:user-agent:
bzr2.2.1+bzr-svn1.0.4
svn:original-date:
2011-02-23T09:49:28.567000Z
Message:

#812(トランザクションIDの自動生成/自動検証)

  • 小画面でトークンを unset しないように修正
Location:
branches/version-2_5-dev/data/class/pages/admin
Files:
2 edited

Legend:

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

    r20345 r20348  
    9292 
    9393    /** 
     94     * トランザクショントークンを unset しないようオーバーライド. 
     95     * 
     96     * @return void 
     97     */ 
     98    function doValidToken() { 
     99        if ($_SERVER["REQUEST_METHOD"] == "POST") { 
     100            if (!SC_Helper_Session_Ex::isValidToken(false)) { 
     101                SC_Utils_Ex::sfDispError(INVALID_MOVE_ERRORR); 
     102            } 
     103        } 
     104    } 
     105 
     106    /** 
    94107     * デストラクタ. 
    95108     * 
  • branches/version-2_5-dev/data/class/pages/admin/products/LC_Page_Admin_Products_ProductSelect.php

    r20345 r20348  
    9898    } 
    9999 
     100    /** 
     101     * トランザクショントークンを unset しないようオーバーライド. 
     102     * 
     103     * @return void 
     104     */ 
     105    function doValidToken() { 
     106        if ($_SERVER["REQUEST_METHOD"] == "POST") { 
     107            if (!SC_Helper_Session_Ex::isValidToken(false)) { 
     108                SC_Utils_Ex::sfDispError(INVALID_MOVE_ERRORR); 
     109            } 
     110        } 
     111    } 
     112 
    100113    /* 取得文字列の変換 */ 
    101114    function lfConvertParam() { 
Note: See TracChangeset for help on using the changeset viewer.