Changeset 611
- Timestamp:
- Dec 16, 2013, 10:45:45 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Version.php
r610 r611 1 1 <?php 2 2 3 $Revision = 61 0; // Subversion revision3 $Revision = 611; // Subversion revision 4 4 $DatabaseRevision = 601; // SQL structure revision 5 5 $ReleaseTime = '2013-12-16'; -
trunk/Common/Form/Types/Integer.php
r607 r611 27 27 { 28 28 if($Item['Null'] and ($Item['Value'] == '')) return(true); 29 return( filter_var($Item['Value'], FILTER_VALIDATE_INT));29 return(preg_match('/^\-*[0-9\.]+$/', $Item['Value'])); 30 30 } 31 31
Note:
See TracChangeset
for help on using the changeset viewer.