Changeset 345
- Timestamp:
- Jan 17, 2012, 1:49:47 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 7 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/global.php
r344 r345 15 15 include_once('Modules/log.php'); 16 16 include_once('aktuality/news.php'); 17 include_once('webcam/webcam.php');18 17 include_once('finance/bills.php'); 19 18 include_once('finance/finance.php'); … … 207 206 $System = new System($Database); 208 207 $System->Config = &$Config; 208 //$System->ReloadList(); 209 209 //$System->Install(); 210 //$System->ReloadList();211 210 $System->Init(); 212 211 if(isset($_SERVER['REMOTE_ADDR'])) $System->Models['User']->Check(); 213 212 $System->AddModule(new Log()); 214 213 $System->AddModule(new News()); 215 $System->AddModule(new Webcam());216 214 $System->AddModule(new Bill()); 217 215 $System->AddModule(new Finance()); -
trunk/index.php
r344 r345 97 97 function WebcamPanel() 98 98 { 99 $Output = $this->System->Modules['Web cam']->ShowImage();99 $Output = $this->System->Modules['WebCam']->ShowImage(); 100 100 return($Output); 101 101 } … … 306 306 { 307 307 $Page = $_GET['page']; 308 if(substr($Page, -1) == '/') $Page = substr($Page, 0, -1); 308 309 if(array_key_exists($Page, $System->Pages)) 309 310 {
Note:
See TracChangeset
for help on using the changeset viewer.