-
Bug
-
Resolution: Fixed
-
Minor
-
8.0.0
-
None
-
Java 8 tomcat 7 zk 8.0.0-RC
-
ZK 8.0.1
I noticed that for .xhmtl files, code used to work in zk 7 like
(zscript tag directly inside head tag)
<head> <zk:zscript xmlns:zk="zk">var="someobject"</zk:zscript> <title>${var}</title> </head>
has to be changed to the following to work in zk 8 RC
(zscript inside div tag)
<head> <div> <zk:zscript xmlns:zk="zk">var="someobject"</zk:zscript> <title>${var}</title> </div> </head>