Changeset 7851

Show
Ignore:
Timestamp:
06/20/09 17:04:14 (9 months ago)
Author:
p_lindheimer
Message:

fixed typos

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.6/iaxsettings/functions.inc.php

    r7848 r7851  
    7979  function is_alphanumeric($value, $item, $message) { 
    8080    $value = trim($value); 
    81           if ($value != '' && !preg_match("/^\s*([a-zA-Z0-9 .&-@=_!<>!\"\']+)\s*$/",$value,$matches)) { 
     81          if ($value != '' && !preg_match("/^\s*([a-zA-Z0-9.&\-@_!<>!\"\']+)\s*$/",$value,$matches)) { 
    8282      $this->errors[] = array('id' => $item, 'value' => $value, 'message' => $message); 
    8383    } 
     
    360360 
    361361    default: 
    362       } if (substr($key,0,15) == "iax_custom_key_") { 
     362      if (substr($key,0,15) == "iax_custom_key_") { 
    363363        $seq = substr($key,15); 
    364364        $save_settings[] = array($db->escapeSimple($val),$db->escapeSimple($iax_settings["iax_custom_val_$seq"]),($seq),CUSTOM);