Changeset 539 for trunk/export/index.php
- Timestamp:
- May 15, 2013, 12:44:32 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/export/index.php
r526 r539 49 49 $Action = '<a href="?Action=View&ExportId='.$Export['Id'].'&Tab=0">Zobrazit</a> <a href="?Action=View&ExportId='.$Export['Id'].'&Tab=7">Exportovat</a>'; 50 50 if($Export['User'] == $User->Id) $Action .= ' <a href="?Action=Delete&ExportId='.$Export['Id'].'" onclick="return confirmAction(\'Opravdu smazat položku?\');">Smazat</a>'; 51 $Output .= '<tr><td>'.HumanDate($Export['TimeCreate']).'</td><td>'.$Export['UserName'].'</td><td>'.$Export['Title'].'</td><td>'.$Export['OutputType'].'</td><td>'.$Export['ClientVersion'].'</td><td>'.$Export['UsedCount'].'</td><td>'.$Action.'</td></tr>'; 51 $Output .= '<tr><td>'.HumanDate($Export['TimeCreate']).'</td>'. 52 '<td><a href="'.$System->Link('/user.php?user='.$Export['User']).'">'.$Export['UserName'].'</a></td>'. 53 '<td>'.$Export['Title'].'</td>'. 54 '<td>'.$Export['OutputType'].'</td>'. 55 '<td>'.$Export['ClientVersion'].'</td>'. 56 '<td>'.$Export['UsedCount'].'</td>'. 57 '<td>'.$Action.'</td></tr>'; 52 58 } 53 59 $Output .= '</table>'.
Note:
See TracChangeset
for help on using the changeset viewer.