Changeset 874 for trunk/Modules/NetworkShare
- Timestamp:
- Apr 6, 2020, 11:56:19 PM (5 years ago)
- Location:
- trunk/Modules/NetworkShare
- Files:
-
- 3 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 } -
trunk/Modules/NetworkShare/browse.php
r873 r874 130 130 $Database->update('NetworkShareItem', 'id='.$Parent, array('size' => $VelikostSlozky)); 131 131 //closedir($Dir); 132 return ($VelikostSlozky);132 return $VelikostSlozky; 133 133 } 134 134 -
trunk/Modules/NetworkShare/playlist.php
r873 r874 34 34 } 35 35 if ($i >= $MaxNesting) $Cesta = '?'.'\\'.$Cesta; 36 return ('\\\\'.$Cesta);36 return '\\\\'.$Cesta; 37 37 } 38 38 … … 40 40 { 41 41 //$FileInfo = new finfo(FILEINFO_MIME); 42 //return ($FileInfo->file($FileName));43 return ('');42 //return $FileInfo->file($FileName); 43 return ''; 44 44 } 45 45
Note:
See TracChangeset
for help on using the changeset viewer.