Ignore:
Timestamp:
May 13, 2008 4:14:53 AM (16 years ago)
Author:
quinn
Message:

Fixed lots of misplings. I'm so embarrassed! ;P

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/docs/coding_standards.txt

    r293 r334  
    234234            return true;
    235235        } else {
    236             // To be valid email address must match regex and fit within the lenth constraints.
     236            // To be valid email address must match regex and fit within the length constraints.
    237237            if (preg_match($this->getParam('regex'), $email, $e_parts) && mb_strlen($e_parts[2]) < 64 && mb_strlen($e_parts[3]) < 255) {
    238238                return true;
Note: See TracChangeset for help on using the changeset viewer.