summaryrefslogtreecommitdiffstats
path: root/admin/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-04-16 23:19:32 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-04-16 23:19:32 +0200
commit9947428d793937b8a168a1153c3c6e16b07f0baa (patch)
tree369f5e396d670664c67c43cbbdfa37ee3da33b97 /admin/templates
parentbfc3b337b7e0ef9536aaeb6d362c5d21bfe63d13 (diff)
parentf8e05b67ff8f735f8a8b32553ae84633e2b57cec (diff)
downloadnextcloud-server-9947428d793937b8a168a1153c3c6e16b07f0baa.tar.gz
nextcloud-server-9947428d793937b8a168a1153c3c6e16b07f0baa.zip
Merge branch 'refactoring' of git://anongit.kde.org/owncloud into refactoring
Diffstat (limited to 'admin/templates')
-rw-r--r--admin/templates/apps.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/admin/templates/apps.php b/admin/templates/apps.php
index 2f584775815..36a7cd53029 100644
--- a/admin/templates/apps.php
+++ b/admin/templates/apps.php
@@ -12,16 +12,14 @@
<th></th>
<th>Name</th>
<th>Modified</th>
- <th></th>
</tr>
</thead>
<tbody>
<?php foreach($_["apps"] as $app): ?>
<tr>
- <td width="1"><?php if($app["preview"] <> "") { echo('<a href=""><img border="0" src="'.$app["preview"].'" /></a>'); } ?> </a></td>
- <td class="filename"><a href="" title=""><?php echo $app["name"]; ?></a></td>
+ <td width="1"><?php if($app["preview"] <> "") { echo('<a href="'.OC_HELPER::linkTo( "admin", "apps.php" ).'?id='.$app['id'].'"><img class="preview" border="0" src="'.$app["preview"].'" /></a>'); } ?> </a></td>
+ <td class="name"><a href="<?php echo(OC_HELPER::linkTo( "admin", "apps.php" ).'?id='.$app['id']); ?>" title=""><?php echo $app["name"]; ?></a><br /><?php echo('<span class="type">'.$app['typename'].'</span>'); ?></td>
<td class="date"><?php echo OC_UTIL::formatdate($app["changed"]); ?></td>
- <td class="fileaction"><a href="" title=""><img src="images/drop-arrow.png" alt="+" /></a></td>
</tr>
<?php endforeach; ?>
</tbody>