Changeset 683 for trunk/Common


Ignore:
Timestamp:
Aug 5, 2014, 11:02:46 PM (10 years ago)
Author:
chronos
Message:
  • Upraveno: Potlačit záznam chyb pokud zdrojová stránka RSS aktualit není dosažitelná.
  • Upraveno: Nepřijímat MAC adresu s pomlčkami jako platnou.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Form/Types/MacAddress.php

    r606 r683  
    2929    return('"'.addslashes($Value).'"');
    3030  }
    31  
     31
    3232  function Validate($Item)
    3333  {
    3434        if($Item['Null'] and ($Item['Value'] == '')) return(true);
    35         return(preg_match('/^([0-9A-F]{2}[:-]){5}([0-9A-F]{2})$/', $Item['Value']));
     35        return(preg_match('/^([0-9A-F]{2}[:]){5}([0-9A-F]{2})$/', $Item['Value']));
    3636  }
    3737
Note: See TracChangeset for help on using the changeset viewer.