Changeset 131 for devel/www/aktuality/index.php
- Timestamp:
- Jan 5, 2009, 7:40:40 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/www/aktuality/index.php
r100 r131 83 83 if($this->System->Modules['User']->CheckPermission('News', 'Insert', 'Group', $Category)) 84 84 { 85 86 85 //print_r($_FILES); 87 86 // Process uploaded file … … 175 174 while($Row = $DbResult->fetch_array()) 176 175 { 177 $Output .= '<div style="border: thin dotted #97ADFF; background: #F6F7FF; margin-top: 5px; padding: 0px 5px 5px 5px;"><div style="padding-bottom: 1px; border-bottom-width: 1; border-bottom-style: solid; border-bottom-color: silver;"><strong>'.$Row['title'].'('.HumanDate($Row['date']).', '.$Row['Name'].$Row['author'].')</strong>';176 $Output .= '<div style="border: thin dotted #97ADFF; background: #F6F7FF; margin-top: 5px; padding: 0px 5px 5px 5px;"><div style="padding-bottom: 1px; border-bottom-width: 1; border-bottom-style: solid; border-bottom-color: silver;"><strong><a href="?action=view&id='.$Row['id'].'">'.$Row['title'].'</a> ('.HumanDate($Row['date']).', '.$Row['Name'].$Row['author'].')</strong>'; 178 177 if($this->System->Modules['User']->User['Id'] == $Row['User']) 179 { 178 { 180 179 $Output .= ' <a href="index.php?action=del&category='.$Category.'&id='.$Row['id'].'">Smazat</a>'; 181 180 $Output .= ' <a href="index.php?action=edit&category='.$Category.'&id='.$Row['id'].'">Editovat</a>'; … … 183 182 $Output .= '</div>'.$Row['content'].'<br />'; 184 183 if($Row['enclosure'] != '') 185 { 184 { 186 185 $Output .= '<br />Přílohy: '; 187 186 $Enclosures = explode(';', $Row['enclosure']);
Note:
See TracChangeset
for help on using the changeset viewer.