Skip to content

Commit

Permalink
[BF] Fix autoload issues with composer
Browse files Browse the repository at this point in the history
  • Loading branch information
barryo committed Feb 3, 2014
1 parent f466848 commit 7882a07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OSS/Form/Auth.php
Expand Up @@ -69,8 +69,8 @@ public static function createUsernameElement( $type = self::USERNAME_TYPE_NONEMA

$un->setRequired( true )
->addValidator( 'NotEmpty', true )
->addFilter( 'HtmlEntitiesDecode' )
->addFilter( 'StripSlashes' )
->addFilter( new OSS_Filter_HtmlEntitiesDecode )
->addFilter( new OSS_Filter_StripSlashes )
->addFilter( 'StringToLower' )
->addFilter( 'StringTrim' );

Expand Down

0 comments on commit 7882a07

Please sign in to comment.