Changeset 607 for trunk/Common
- Timestamp:
- Dec 12, 2013, 10:19:00 PM (11 years ago)
- Location:
- trunk/Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Form/Types/Integer.php
r548 r607 23 23 return($_POST[$Item['Name']]); 24 24 } 25 26 function Validate($Item) 27 { 28 if($Item['Null'] and ($Item['Value'] == '')) return(true); 29 return(filter_var($Item['Value'], FILTER_VALIDATE_INT)); 30 } 31 32 function GetValidationFormat() 33 { 34 return('číselná hodnota'); 35 } 25 36 } -
trunk/Common/Page.php
r594 r607 85 85 if($this->BasicHTML == false) 86 86 { 87 $Output .= '<div id="Title">'.$Title.'</div>87 $Output .= '<div class="MainTitle">'.$Title.'</div> 88 88 <div class="Navigation"><span class="MenuItem"><strong>Navigace :: </strong> '.$Navigation.'</span><div class="MenuItem2">'; 89 89 if(isset($this->System->User) and ($this->System->Config['Web']['UserSupport'] == 1))
Note:
See TracChangeset
for help on using the changeset viewer.