Ignore:
Timestamp:
2011/01/18 16:17:10 (13 years ago)
Author:
nanasess
bzr:base-revision:
svn-v4:1e3b908f-19a9-db11-a64c-001125224ba8:branches/version-2_5-dev:19955
bzr:committer:
Kentaro Ohkouchi <ohkouchi@loop-az.jp>
bzr:file-ids:

data/Smarty/templates/admin/contents/recomend.tpl 15732@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2FSmarty%2Ftemplates%2Fdefault%2Fadmin%2Fcontents%2Frecomend.tpl
data/class/pages/admin/products/LC_Page_Admin_Products_Review.php 15537@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fadmin%2Fproducts%2FLC_Page_Admin_Products_Review.php
data/class/pages/products/LC_Page_Products_Review.php 15173@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fproducts%2FLC_Page_Products_Review.php
bzr:mapping-version:
v4
bzr:merge:

ohkouchi@loop-az.jp-20110118071336-8sl0bvtw9h9wmr34
bzr:repository-uuid:
1e3b908f-19a9-db11-a64c-001125224ba8
bzr:revision-id:
ohkouchi@loop-az.jp-20110118071706-3yn4r2r239x374sf
bzr:revno:
2685
bzr:revprop:branch-nick:
branches/version-2_5-dev
bzr:root:
branches/version-2_5-dev
bzr:text-revisions:

data/class/pages/admin/products/LC_Page_Admin_Products_Review.php ohkouchi@loop-az.jp-20110118071336-8sl0bvtw9h9wmr34
data/class/pages/products/LC_Page_Products_Review.php ohkouchi@loop-az.jp-20110118071336-8sl0bvtw9h9wmr34
bzr:timestamp:
2011-01-18 16:17:06.540999889 +0900
bzr:user-agent:
bzr2.2.1+bzr-svn1.0.4
svn:original-date:
2011-01-18T07:17:06.541000Z
Message:

#881(冗長な tpl_mainpage の削除)

#382(管理画面XHTMLに変更)

  • おすすめ商品登録を修正
Location:
branches/version-2_5-dev/data
Files:
3 edited

Legend:

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

    r19954 r19956  
    4141  } else { 
    4242    if(window.confirm('内容を登録しても宜しいですか')){ 
    43       return true; 
     43        fm.submit(); 
     44        return true; 
    4445    } 
    4546  } 
     
    103104        <textarea name="comment" cols="45" rows="4" style="width: 337px; height: 82px; <!--{$arrErr[$smarty.section.cnt.iteration].comment|sfGetErrorColor}-->" <!--{$arrItems[$smarty.section.cnt.iteration].product_id|sfGetEnabled}-->><!--{$arrItems[$smarty.section.cnt.iteration].comment}--></textarea> 
    104105        <!--{if $arrItems[$smarty.section.cnt.iteration].product_id}--> 
    105         <br /><a class="btn-action" href="javascript:;" onclick="return lfnCheckSubmit(document.form<!--{$smarty.section.cnt.iteration}-->); return false;"><span class="btn-next">登録する</span></a> 
     106        <br /><a class="btn-action" href="javascript:;" onclick="return lfnCheckSubmit(document.form<!--{$smarty.section.cnt.iteration}-->);"><span class="btn-next">登録する</span></a> 
    106107        <!--{/if}--> 
    107108        </form> 
  • branches/version-2_5-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Review.php

    r19807 r19956  
    265265                $data = $objCSV->lfGetReviewCSV($where, '', $arrval); 
    266266                // CSVを送信する。 
    267                 SC_Utils_Ex::sfCSVDownload($head.$data); 
     267                list($fime_name, $data) = SC_Utils_Ex::sfGetCSVData($head.$data); 
     268                $this->sendResponseCSV($fime_name, $data); 
    268269                exit; 
    269270            } 
  • branches/version-2_5-dev/data/class/pages/products/LC_Page_Products_Review.php

    r19832 r19956  
    6060        $this->arrSex = $masterData->getMasterData("mtb_sex"); 
    6161        $this->arrReviewDenyURL = $masterData->getMasterData("mtb_review_deny_url"); 
     62        $this->tpl_mainpage = 'products/review.tpl'; 
    6263        $this->httpCacheControl('nocache'); 
    6364    } 
     
    177178 
    178179        $this->transactionid = SC_Helper_Session_Ex::getToken(); 
    179         $this->setTemplate('products/review.tpl'); 
     180        $this->setTemplate($this->tpl_mainpage); 
    180181    } 
    181182 
Note: See TracChangeset for help on using the changeset viewer.