| Revision | 251 (tree) |
|---|---|
| Time | 2016-05-02 22:03:51 |
| Author | t_nakayama1971 |
(empty log message)
| @@ -4,6 +4,7 @@ | ||
| 4 | 4 | import javax.servlet.jsp.JspException; |
| 5 | 5 | |
| 6 | 6 | import core.util.NumberUtil; |
| 7 | +import online.view.ViewUtil; | |
| 7 | 8 | |
| 8 | 9 | /** |
| 9 | 10 | * クッキータグライブラリ |
| @@ -113,7 +114,7 @@ | ||
| 113 | 114 | @Override |
| 114 | 115 | public int doStartTag() throws JspException { |
| 115 | 116 | try { |
| 116 | - Cookie ck = new Cookie(this.name, this.value); | |
| 117 | + Cookie ck = new Cookie(this.name, ViewUtil.noControl(this.value)); | |
| 117 | 118 | if (this.expire != null) { |
| 118 | 119 | ck.setMaxAge(this.expire.intValue()); |
| 119 | 120 | } |
| @@ -135,4 +136,5 @@ | ||
| 135 | 136 | release(); |
| 136 | 137 | } |
| 137 | 138 | } |
| 139 | + | |
| 138 | 140 | } |