Revision 8536
Added by ben leinfelder almost 11 years ago
lib/style/skins/sanparks/SaeonLogin.jspx | ||
---|---|---|
198 | 198 |
<jsp:attribute name="name">sessionid</jsp:attribute> |
199 | 199 |
<jsp:attribute name="type">hidden</jsp:attribute> |
200 | 200 |
<jsp:attribute name="value"> |
201 |
<jsp:getProperty name="clientViewBean" property="sessionid" />
|
|
201 |
<jsp:expression>clientViewBean.getSessionid()</jsp:expression>
|
|
202 | 202 |
</jsp:attribute> |
203 | 203 |
</jsp:element> |
204 | 204 |
<input type="text" id="anyfield" name="anyfield" value="" size="14" /> |
lib/style/skins/saeon/SaeonLogin.jspx | ||
---|---|---|
196 | 196 |
<jsp:attribute name="name">sessionid</jsp:attribute> |
197 | 197 |
<jsp:attribute name="type">hidden</jsp:attribute> |
198 | 198 |
<jsp:attribute name="value"> |
199 |
<jsp:getProperty name="clientViewBean" property="sessionid" />
|
|
199 |
<jsp:expression>clientViewBean.getSessionid()</jsp:expression>
|
|
200 | 200 |
</jsp:attribute> |
201 | 201 |
</jsp:element> |
202 | 202 |
<input type="text" id="anyfield" name="anyfield" value="" size="14" /> |
Also available in: Unified diff
use explicit accessor for clientViewBean sessionid since the taglib was resulting in a blank page.