diff options
author | Kamil Domanski <kdomanski@kdemail.net> | 2011-06-21 22:35:36 +0200 |
---|---|---|
committer | Kamil Domanski <kdomanski@kdemail.net> | 2011-06-21 22:36:13 +0200 |
commit | 6a726e2488092b58d9e773f2771c4452ff337a63 (patch) | |
tree | e00622f816e2213f490d4a6549c4176d03d4d290 /admin/templates | |
parent | e047feb2ad90c3b103c92d35f794988767b2ba21 (diff) | |
download | nextcloud-server-6a726e2488092b58d9e773f2771c4452ff337a63.tar.gz nextcloud-server-6a726e2488092b58d9e773f2771c4452ff337a63.zip |
changed app enable status to buttons
Diffstat (limited to 'admin/templates')
-rw-r--r-- | admin/templates/appsinst.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/templates/appsinst.php b/admin/templates/appsinst.php index 482273da1df..0e97df6add8 100644 --- a/admin/templates/appsinst.php +++ b/admin/templates/appsinst.php @@ -20,7 +20,7 @@ <td class="name" width="200"><?php echo($app['name']); ?></td> <td class="version"><?php echo($app['version']); ?></td> <td><?php echo($app['author']); ?></td> - <td class="<?php echo $app['enabled'] ? 'enabled' : 'disabled' ?>"><div x-use="appenableddiv"><?php echo $l->t( $app['enabled'] ? 'enabled' : 'disabled' ); ?></div></td> + <td><input x-use="appenablebutton" type='button' value='<?php echo $l->t( $app['enabled'] ? 'enabled' : 'disabled' ); ?>' class='appbutton prettybutton <?php echo( $app['enabled'] ? 'enabled' : 'disabled' ); ?>'/></td> </tr> <?php endforeach; ?> </tbody> |