Add session="false" directive to the index page of the ROOT web application.
authorkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 16 Jun 2011 08:18:44 +0000 (08:18 +0000)
committerkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 16 Jun 2011 08:18:44 +0000 (08:18 +0000)
There is no need to create a session when accessing this page.

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1136318 13f79535-47bb-0310-9956-ffa450edef68

webapps/ROOT/index.jsp
webapps/docs/changelog.xml

index 2ca898e..6fe86d3 100644 (file)
@@ -15,6 +15,7 @@ See the License for the specific language governing permissions and
 limitations under the License.
 --%>
 <!DOCTYPE html>
+<%@ page session="false" %>
 <%
 java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy");
 request.setAttribute("year", sdf.format(new java.util.Date()));
index 8f3350f..a12e630 100644 (file)
         <bug>43538</bug>: Add host name and IP address to the HTML Manager
         application. Patch by Dennis Lundberg. (markt)
       </add>
+      <fix>
+        Add <code>session="false"</code> directive to the index page of the
+        ROOT web application. (kkolinko)
+      </fix>
     </changelog>
   </subsection>
 </section>