r9763 - helma-ng/trunk/modules/helma/webapp
[email protected] Thu, 14 May 2009 17:27:49 +0200 (CEST)
| Newsgroups | gmane.comp.java.helma.cvs |
|---|---|
| Message-ID | <20090514152749.BCA183D0D6@mia> |
Author: hannes
Date: 2009-05-14 17:27:49 +0200 (Thu, 14 May 2009)
New Revision: 9763
Modified:
helma-ng/trunk/modules/helma/webapp/request.js
Log:
Remove print statement
Details at http://dev.helma.org/trac/helma/changeset/9763
Modified: helma-ng/trunk/modules/helma/webapp/request.js
===================================================================
--- helma-ng/trunk/modules/helma/webapp/request.js 2009-05-14 15:27:46 UTC (rev 9762)
+++ helma-ng/trunk/modules/helma/webapp/request.js 2009-05-14 15:27:49 UTC (rev 9763)
@@ -89,7 +89,6 @@
define("checkTrailingSlash", {
value: function checkTrailingSlash() {
// only redirect for GET requests
- print(this.path, this.isGet);
if (!this.path.endsWith("/") && this.isGet) {
var path = this.queryString ?
this.path + "/?" + this.queryString : this.path + "/";