Changeset 251 for trunk/aktuality/news.php
- Timestamp:
- Oct 2, 2009, 7:12:57 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/aktuality/news.php
r236 r251 107 107 foreach($this->NewsSetting as $Index => $this->NewSetting) 108 108 { 109 $this->NewsSetting[$Index] = array_merge($this->NewSetting, $NewsSettingCookie[$Index]); 109 if(array_key_exists($Index, $NewsSettingCookie)) 110 $this->NewsSetting[$Index] = array_merge($this->NewSetting, $NewsSettingCookie[$Index]); 110 111 } 111 112 } … … 114 115 function Show() 115 116 { 116 $Output = ' <div class="PanelTitle"><span class="MenuItem">Aktuálně</span><span class="MenuItem2"><a href="?Action=CustomizeNews">Upravit</a></span></div>';117 $Output = ''; 117 118 118 119 $UploadedFilesFolder = 'aktuality/uploads/';
Note:
See TracChangeset
for help on using the changeset viewer.