Changeset 506 for trunk/Modules/Portal/Portal.php
- Timestamp:
- Apr 1, 2013, 10:17:42 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Portal/Portal.php
r501 r506 5 5 class PagePortal extends Page 6 6 { 7 var $Dependencies = array('News');8 7 var $FullTitle = 'Zděchovský rozcestník'; 9 8 var $ShortTitle = ''; … … 141 140 if($_GET['Action'] == 'CustomizeNewsSave') 142 141 { 143 $Output .= $this->System->Module s['News']->CustomizeSave();142 $Output .= $this->System->ModuleManager->Modules['News']->CustomizeSave(); 144 143 } else 145 144 if($_GET['Action'] == 'LoginForm') … … 334 333 } else 335 334 if($Panel['Module'] == 'Webcam') $Output .= $this->Panel('Kamery', $this->WebcamPanel()); 336 else if($Panel['Module'] == 'NewsGroupList') $Output .= $this->Panel('Aktuality', $this->System->Modules['News']->Show(), array('<a href="?Action=CustomizeNews">Upravit</a>')); 335 else if($Panel['Module'] == 'NewsGroupList') 336 $Output .= $this->Panel('Aktuality', $this->System->ModuleManager->Modules['News']->Show(), array('<a href="?Action=CustomizeNews">Upravit</a>')); 337 337 } 338 338 $Output .= '</td>'; … … 353 353 $this->License = 'GNU/GPLv3'; 354 354 $this->Description = 'Community portal.'; 355 $this->Dependencies = array( );355 $this->Dependencies = array('News'); 356 356 } 357 357
Note:
See TracChangeset
for help on using the changeset viewer.