Changeset 20766


Ignore:
Timestamp:
2011/03/22 18:53:34 (13 years ago)
Author:
nanasess
bzr:base-revision:
ohkouchi@loop-az.jp-20110322082237-uygmr3o6rrfu41c3
bzr:committer:
Kentaro Ohkouchi <ohkouchi@loop-az.jp>
bzr:file-ids:

data/Smarty/templates/admin/products/product_select.tpl 15732@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2FSmarty%2Ftemplates%2Fdefault%2Fadmin%2Fproducts%2Fproduct_select.tpl
bzr:mapping-version:
v4
bzr:merge:

ohkouchi@loop-az.jp-20110322095248-axcs9lfmxq8punt0
bzr:repository-uuid:
1e3b908f-19a9-db11-a64c-001125224ba8
bzr:revision-id:
ohkouchi@loop-az.jp-20110322095331-rq7cxpximp4nb3vw
bzr:revno:
3480
bzr:revprop:branch-nick:
branches/version-2_5-dev
bzr:root:
branches/version-2_5-dev
bzr:text-revisions:

data/Smarty/templates/admin/products/product_select.tpl ohkouchi@loop-az.jp-20110322095248-axcs9lfmxq8punt0
bzr:timestamp:
2011-03-22 18:53:31.066999912 +0900
bzr:user-agent:
bzr2.2.1+bzr-svn1.0.4
svn:original-date:
2011-03-22T09:53:31.067000Z
Message:

#862 (テンプレート上のエスケープを簡単に)実装漏れ箇所

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/Smarty/templates/admin/products/product_select.tpl

    r20764 r20766  
    3030function func_submit( id ){ 
    3131    var fm = window.opener.document.form1; 
    32     fm.recommend_id<!--{$smarty.get.no|h}-->.value = id; 
     32    var no = escape('<!--{$smarty.get.no|h}-->'); 
     33    fm['recommend_id' + no].value = id; 
    3334    fm.mode.value = 'recommend_select'; 
    34     fm.anchor_key.value = 'recommend_no' + escape('<!--{$smarty.get.no|h}-->'); 
     35    fm.anchor_key.value = 'recommend_no' + no; 
    3536    fm.submit(); 
    3637    window.close(); 
Note: See TracChangeset for help on using the changeset viewer.