Changeset 56 for trunk/Modules
- Timestamp:
- Apr 7, 2020, 9:13:33 PM (5 years ago)
- Location:
- trunk/Modules
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Event/EventPage.php
r55 r56 49 49 $this->Title = 'Události - '.$this->Title; 50 50 if (array_key_exists('lvm', $_GET) and ($_GET['lvm'] == 'seznam')) 51 $this-> ClearPage = true;51 $this->RawPage = true; 52 52 else $Output .= '<div class="title">Události</div>'; 53 53 … … 191 191 global $Config; 192 192 193 $this-> ClearPage = true;193 $this->RawPage = true; 194 194 $RSS = new RSS(); 195 195 $RSS->Title = 'Taneční události'; -
trunk/Modules/Meet/MeetPage.php
r55 r56 52 52 $this->Title = 'Seznamka - '.$this->Title; 53 53 if (array_key_exists('lvm', $_GET) and ($_GET['lvm'] == 'seznam')) 54 $this-> ClearPage = true;54 $this->RawPage = true; 55 55 else $Output .= '<div class="title">Inzeráty</div>'; 56 56 … … 203 203 global $Config; 204 204 205 $this-> ClearPage = true;205 $this->RawPage = true; 206 206 $RSS = new RSS(); 207 207 $RSS->Title = 'Taneční seznamka'; -
trunk/Modules/Movie/Movie.php
r55 r56 36 36 $this->Title = 'Filmy - '.$this->Title; 37 37 if (array_key_exists('lvm', $_GET) and ($_GET['lvm'] == 'seznam')) 38 $this-> ClearPage = true;38 $this->RawPage = true; 39 39 else $Output .= '<div class="title">Filmy</div>'; 40 40 -
trunk/Modules/RSS/RSS.php
r55 r56 56 56 function Show() 57 57 { 58 $this-> ClearPage = true;58 $this->RawPage = true; 59 59 60 60 if (array_key_exists('channel', $_GET)) $ChannelName = $_GET['channel'];
Note:
See TracChangeset
for help on using the changeset viewer.