Ignore:
Timestamp:
Nov 15, 2014 9:34:39 PM (10 years ago)
Author:
anonymous
Message:

Many auth and crypto changes; various other bugfixes while working on pulso.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Validator.inc.php

    r490 r500  
    162162    static public function stringLength($val, $min, $max)
    163163    {
    164         return mb_strlen(trim((string)$val)) >= $min && mb_strlen($val) <= $max;
     164        return mb_strlen((string)$val) >= $min && mb_strlen((string)$val) <= $max;
    165165    }
    166166
Note: See TracChangeset for help on using the changeset viewer.