- Timestamp:
- 2007/10/26 10:21:41 (15 years ago)
- Location:
- branches/feature-module-update/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/Smarty/templates/default/admin/basis/parameter.tpl
r16044 r16567 69 69 <div style="font-size: 80%; color: #666666"><!--{$arrComments[cnt]|escape}--></div> 70 70 <div> 71 < input type="text" name="<!--{$arrKeys[cnt]|escape}-->" value="<!--{$arrValues[cnt]|escape}-->" size="64">72 <!--{assign var=key value=$arrKeys[cnt]}-->73 71 <!--{assign var=key value=$arrKeys[cnt]}--> 72 <input type="text" name="<!--{$arrKeys[cnt]|escape}-->" value="<!--{$arrValues[cnt]|escape}-->" size="64" style="<!--{if $arrErr.$key != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}--><!--{/if}-->"> 73 <span class="red12"><!--{$arrErr.$key}--></span> 74 74 </div> 75 75 </td> -
branches/feature-module-update/data/class/pages/admin/basis/LC_Page_Admin_Basis_Parameter.php
r15730 r16567 70 70 if (empty($this->arrErr)) { 71 71 $this->update(); 72 $this->tpl_onload = "window.alert('パラメータの設定が完了しました。');"; 72 73 } else { 73 74 $this->arrValues = SC_Utils_Ex::getHash2Array($this->arrForm, 74 75 $this->arrKeys); 76 $this->tpl_onload = "window.alert('エラーが発生しました。入力内容をご確認下さい。');"; 75 77 } 78 76 79 } 77 80
Note: See TracChangeset
for help on using the changeset viewer.