Changeset 833
- Timestamp:
- Jul 3, 2016, 1:41:25 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Version.php
r831 r833 1 1 <?php 2 2 3 $Revision = 83 1; // Subversion revision3 $Revision = 833; // Subversion revision 4 4 $DatabaseRevision = 831; // SQL structure revision 5 $ReleaseTime = strtotime('2016-0 5-01');5 $ReleaseTime = strtotime('2016-07-03'); -
trunk/Modules/Finance/Manage.php
r825 r833 52 52 $MonthFrom = floor(($MonthCurrent - 1) / $MonthCount) * $MonthCount + 1; 53 53 $MonthTo = $MonthFrom + $MonthCount - 1; 54 54 55 55 /* Use period from current month to end month so months before current month are cut out */ 56 56 $MonthCount = $MonthTo - $MonthCurrent + 1; … … 365 365 $Content = 'Vyúčtovaní zákazníka <strong>'.$Subject['Name'].'</strong> zastoupeného uživatelem <strong>'. 366 366 $User['Name'].'</strong> ke dni <strong>'.$this->System->HumanDate(time()).'</strong>.<br/><br/>'."\n". 367 'V áše aktuální služby: ';367 'Vaše aktuální služby: '; 368 368 $DbResult = $this->Database->query('SELECT GROUP_CONCAT(`Service`.`Name`) AS `Name` FROM `ServiceCustomerRel` LEFT JOIN `Service` '. 369 369 'ON `Service`.`Id`=`ServiceCustomerRel`.`Service` WHERE (`ServiceCustomerRel`.`Customer`='.$Member['Id'].') '. -
trunk/Modules/Map/Map.php
r796 r833 13 13 function Show() 14 14 { 15 if(!$this->System->User->CheckPermission('Map', 'Show')) 16 return('Nemáte oprávnění'); 17 15 18 if(count($this->System->PathItems) > 1) 16 19 { … … 224 227 array('Caption' => 'Ukázat na mapě', 'URL' => '/map/show-position?i=#RowId'), 225 228 ), 229 'Actions' => array( 230 array('Caption' => 'Ukázat mapu', 'URL' => '/map/'), 231 ), 226 232 )); 227 233 $this->System->FormManager->RegisterFormType('TMapPosition', array( -
trunk/Modules/Network/HostList.php
r790 r833 11 11 function Show() 12 12 { 13 if(!$this->System->User->CheckPermission('Network', 'ShowHostList')) 14 return('Nemáte oprávnění'); 15 13 16 if(array_key_exists('admin', $_GET)) $Where = 'AND NetworkDevice.Type IN (1,4,5) '; 14 17 else $Where = ''; -
trunk/Modules/Network/Network.php
r830 r833 90 90 function ShowInformation() 91 91 { 92 if(!$this->System->User->CheckPermission('Network', 'ShowInfo')) 93 return('Nemáte oprávnění'); 94 92 95 $Output = '<a href="'.$this->System->Link('/network/frequency-plan/').'">Frekvenční plán</a><br />'; 93 96 $Output .= '<a href="'.$this->System->Link('/network/subnet/').'">Výpis registrovaných podsítí</a><br />'; -
trunk/Modules/User/UserList.php
r825 r833 9 9 function Show() 10 10 { 11 if(!$this->System->User->CheckPermission('User', 'ShowList')) 12 return('Nemáte oprávnění'); 13 11 14 $DbResult = $this->Database->query('SELECT COUNT(*) FROM `User`'); 12 15 $DbRow = $DbResult->fetch_row();
Note:
See TracChangeset
for help on using the changeset viewer.