• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision251 (tree)
Time2016-05-02 22:03:51
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/framework/fwOnline/src/online/view/tag/CookieTag.java (revision 250)
+++ trunk/framework/fwOnline/src/online/view/tag/CookieTag.java (revision 251)
@@ -4,6 +4,7 @@
44 import javax.servlet.jsp.JspException;
55
66 import core.util.NumberUtil;
7+import online.view.ViewUtil;
78
89 /**
910 * クッキータグライブラリ
@@ -113,7 +114,7 @@
113114 @Override
114115 public int doStartTag() throws JspException {
115116 try {
116- Cookie ck = new Cookie(this.name, this.value);
117+ Cookie ck = new Cookie(this.name, ViewUtil.noControl(this.value));
117118 if (this.expire != null) {
118119 ck.setMaxAge(this.expire.intValue());
119120 }
@@ -135,4 +136,5 @@
135136 release();
136137 }
137138 }
139+
138140 }