summaryrefslogtreecommitdiffstats
path: root/admin/templates
diff options
context:
space:
mode:
authorFrank Karlitschek <karlitschek@kde.org>2011-04-16 23:07:18 +0200
committerFrank Karlitschek <karlitschek@kde.org>2011-04-16 23:07:18 +0200
commitfc63882fe2bcbacd1ec880c9f689da3a334c51cb (patch)
treed900e7e168cff798fb87a880a602a86845f7b5bc /admin/templates
parenta7da3cd6a0f847820efd71a7aa2f58fb4fcf05a0 (diff)
downloadnextcloud-server-fc63882fe2bcbacd1ec880c9f689da3a334c51cb.tar.gz
nextcloud-server-fc63882fe2bcbacd1ec880c9f689da3a334c51cb.zip
more layout fixes
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>