Changeset 607 for trunk/Modules
- Timestamp:
- Dec 12, 2013, 10:19:00 PM (11 years ago)
- Location:
- trunk/Modules
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Modules/Log/Log.php ¶
r586 r607 34 34 'Operation' => array('Type' => 'String', 'Caption' => 'Operace', 'Default' => '', 'ReadOnly' => true), 35 35 'Value' => array('Type' => 'Text', 'Caption' => 'Hodnota', 'Default' => '', 'ReadOnly' => true), 36 'IPAddress' => array('Type' => ' Text', 'Caption' => 'Adresa IP', 'Default' => '', 'ReadOnly' => true),36 'IPAddress' => array('Type' => 'IPv4Address', 'Caption' => 'Adresa IP', 'Default' => '', 'ReadOnly' => true), 37 37 ), 38 38 )); -
TabularUnified trunk/Modules/News/News.php ¶
r605 r607 12 12 { 13 13 var $NewsCountPerCategory = 3; 14 var $UploadedFilesFolder = ' aktuality/uploads/';14 var $UploadedFilesFolder = 'uploads/'; 15 15 16 16 function __construct($System) -
TabularUnified trunk/Modules/News/NewsPage.php ¶
r548 r607 52 52 { 53 53 if(file_exists($this->UploadedFilesFolder.$Enclosure)) 54 $Output .= ' <a href="'.$this-> UploadedFilesFolder.$Enclosure.'">'.$Enclosure.'</a>';54 $Output .= ' <a href="'.$this->System->Link('/'.$this->UploadedFilesFolder.$Enclosure).'">'.$Enclosure.'</a>'; 55 55 } 56 56 } … … 248 248 foreach($Enclosures as $Enclosure) 249 249 { 250 if(file_exists($this->UploadedFilesFolder.$Enclosure)) $Output .= ' <a href="'.$this->UploadedFilesFolder.$Enclosure.'">'.$Enclosure.'</a>'; 250 if(file_exists($this->UploadedFilesFolder.$Enclosure)) 251 $Output .= ' <a href="'.$this->System->Link('/'.$this->UploadedFilesFolder.$Enclosure).'">'.$Enclosure.'</a>'; 251 252 } 252 253 }
Note:
See TracChangeset
for help on using the changeset viewer.