Changeset 738 for trunk/Modules/NetworkShare/SharePage.php
- Timestamp:
- Apr 14, 2015, 10:20:16 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/NetworkShare/SharePage.php
r584 r738 74 74 75 75 // Default host list view 76 if((count($_POST) == 0) and (count($_GET) == 0)) 76 if((count($_POST) == 0) and (count($_GET) == 0)) 77 77 { 78 78 $_POST['view'] = 1; 79 $_POST['page'] = 0; 79 $_POST['page'] = 0; 80 80 } 81 81 … … 101 101 102 102 // Log search 103 if(array_key_exists('keyword', $_POST) or array_key_exists('keyword', $_GET)) 103 if(array_key_exists('keyword', $_POST) or array_key_exists('keyword', $_GET)) 104 104 $this->System->ModuleManager->Modules['Log']->NewRecord('Share', 'Hledaný výraz', $_SESSION['keyword']); 105 105 … … 218 218 $Pocet = $Row[0]; 219 219 220 if($Pocet > 0) 220 if($Pocet > 0) 221 221 { 222 222 $Output .= 'Nalezeno celkem: '.$Pocet.' položek<br />'; 223 } else 223 } else 224 224 $Output .= 'Podle zadaných podmínek nic nenalezeno'; 225 225 if(($Pocet > 0) || ($upstr)) … … 228 228 <tr><th bgcolor="#E0E0FF"><a href="index.php?order=name">Soubor</a></th><th bgcolor="#E0E0FF"><a href="index.php?order=ext">Přípona</a></th><th bgcolor="#E0E0FF"><a href="index.php?order=size">Velikost</a></th><th bgcolor="#E0E0FF"><a href="index.php?order=date">Datum</a></th><th bgcolor="#E0E0FF">Umístění</th></tr>'; 229 229 $Output .= $upstr; 230 if($Pocet > 0) 230 if($Pocet > 0) 231 231 { 232 232 // Zobrazení tabulky s výsledky … … 260 260 } 261 261 } 262 if($Pocet > 0) 262 if($Pocet > 0) 263 263 { 264 264 // Celkový přehled
Note:
See TracChangeset
for help on using the changeset viewer.