Changeset 874 for trunk/Modules/NetworkShare/SharePage.php
- Timestamp:
- Apr 6, 2020, 11:56:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/NetworkShare/SharePage.php
r873 r874 22 22 function ShowTime() 23 23 { 24 return (date("H:i:s")."<br />\n");24 return date("H:i:s")."<br />\n"; 25 25 } 26 26 … … 51 51 } 52 52 if ($i >= $this->MaxNesting) $Cesta = '?'.'\\'.$Cesta; 53 return ('\\\\'.$Cesta);53 return '\\\\'.$Cesta; 54 54 } 55 55 … … 63 63 array_shift($Jednotky); 64 64 } 65 return ($Velikost.' '.$Jednotky[0]);65 return $Velikost.' '.$Jednotky[0]; 66 66 } 67 67 68 68 function Show() 69 69 { 70 if (!$this->System->User->CheckPermission('NetworkShare', 'Display')) return ('Nemáte oprávnění');70 if (!$this->System->User->CheckPermission('NetworkShare', 'Display')) return 'Nemáte oprávnění'; 71 71 72 72 // If not only online checkbox checked … … 318 318 } 319 319 } 320 return ($Output);320 return $Output; 321 321 } 322 322 }
Note:
See TracChangeset
for help on using the changeset viewer.