[pLog-svn] r5495 - plog/branches/lifetype-1.2/class/summary/action
oscar at devel.lifetype.net
oscar at devel.lifetype.net
Tue Jun 5 16:37:31 EDT 2007
Author: oscar
Date: 2007-06-05 16:37:31 -0400 (Tue, 05 Jun 2007)
New Revision: 5495
Modified:
plog/branches/lifetype-1.2/class/summary/action/dousercreation.class.php
Log:
Encoding characters to their html entities seems to break double-byte encodings such as utf-8, so let's not do it (we were not doing it before either and it did not seem to be an issue)
Modified: plog/branches/lifetype-1.2/class/summary/action/dousercreation.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/summary/action/dousercreation.class.php 2007-06-05 20:27:58 UTC (rev 5494)
+++ plog/branches/lifetype-1.2/class/summary/action/dousercreation.class.php 2007-06-05 20:37:31 UTC (rev 5495)
@@ -22,7 +22,7 @@
$this->RegisterAction( $actionInfo, $request );
// apply some filters to the data in the request
- $f = new HtmlFilter( true );
+ $f = new HtmlFilter();
$this->_request->registerFilter( "userName", $f );
$this->_request->registerFilter( "userFullName", $f );
$this->_request->registerFilter( "userEmail", $f );
More information about the pLog-svn
mailing list