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/lib/Email.inc.php

    r311 r334  
    6868    function Email($params=null)
    6969    {
    70         // The regex used in validEmail(). Set here instead of in the default _params above so we can use the concatination . dot.
     70        // The regex used in validEmail(). Set here instead of in the default _params above so we can use the concatenation . dot.
    7171        // This matches an email address as complex as:
    7272        //      Bob John-Smith <bob&smith's/dep=sales!@smith-wick.ca.us> (Sales department)
     
    347347            return true;
    348348        } else {
    349             // To be valid email address must match regex and fit within the lenth constraints.
     349            // To be valid email address must match regex and fit within the length constraints.
    350350            if (preg_match($this->getParam('regex'), $email, $e_parts) && mb_strlen($e_parts[2]) < 64 && mb_strlen($e_parts[3]) < 255) {
    351351                return true;
Note: See TracChangeset for help on using the changeset viewer.