Changeset 363
- Timestamp:
- Jan 18, 2012, 9:45:55 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Log/Log.php
r354 r363 75 75 $this->AddPropertyOneToMany('User', 'User'); 76 76 $this->AddPropertyString('Module'); 77 $this->AddPropertyString('Operation'); 78 $this->AddPropertyString('Value'); 77 $this->AddPropertyString('Operation'); 78 $this->AddPropertyString('Value'); 79 79 } 80 80 } -
trunk/Modules/Network/Network.php
r361 r363 8 8 include('user_hosts.php'); 9 9 include('NetworkInformation.php'); 10 include('HostList.php'); 10 11 11 12 class NetworkPage extends Page … … 26 27 else if($this->System->PathItems[1] == 'pocitace') $PageClass = 'HostListPage'; 27 28 else if($this->System->PathItems[1] == 'podsite') $PageClass = 'SubnetPage'; 29 else if($this->System->PathItems[1] == 'registrovane-pocitace') $PageClass = 'NetworkHostList'; 28 30 else return(PAGE_NOT_FOUND); 29 31 } else $PageClass = 'NetworkInformationPage'; -
trunk/Modules/NetworkShare/SharePage.php
r362 r363 281 281 //echo($Host); 282 282 $Host = strtoupper(substr($Host, 0, strpos($Host, '.'))); 283 $DbResult = $this->Database->select(' errors', '*', 'host="'.$Host.'"');283 $DbResult = $this->Database->select('NetworkShareError', '*', 'host="'.$Host.'"'); 284 284 if($DbResult->num_rows > 0) $Output .= '<strong>Výpis chybových hlášení pro počítač '.$Host.':</strong><br />'; 285 285 //echo('host="'.$Host.'"'); -
trunk/Modules/User/User.php
r358 r363 1 1 <?php 2 3 include('UserList.php'); 2 4 3 5 define('LOGIN_USED', 'Přihlašovací jméno již použito.'); … … 336 338 { 337 339 $this->System->Models['User'] = new User($this->Database, $this->System); 340 $this->System->Pages['uzivatele'] = 'UserListPage'; 338 341 } 339 342
Note:
See TracChangeset
for help on using the changeset viewer.