summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2014-04-04 22:14:51 +0200
committerLukas Reschke <lukas@statuscode.ch>2014-04-04 22:14:51 +0200
commitb2f8e3438884b3032791175be5a5526c0a1f89c8 (patch)
treeea2f0edf18ce455ae25da3fc1d19c7cf5962c81d /settings
parent710bbd34912b02d7b9a431bb9ff85f22a1475248 (diff)
downloadnextcloud-server-b2f8e3438884b3032791175be5a5526c0a1f89c8.tar.gz
nextcloud-server-b2f8e3438884b3032791175be5a5526c0a1f89c8.zip
Remove uneeded file
This file seems not to be actually used anywhere.
Diffstat (limited to 'settings')
-rw-r--r--settings/templates/oauth-required-apps.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/settings/templates/oauth-required-apps.php b/settings/templates/oauth-required-apps.php
deleted file mode 100644
index 3660f423423..00000000000
--- a/settings/templates/oauth-required-apps.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-/**
- * Copyright (c) 2012, Tom Needham <tom@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or later.
- * See the COPYING-README file.
- */
-?>
-<div id="oauth-request" class="guest-container">
- <p><strong><?php print_unescaped(OC_Util::sanitizeHTML($_['consumer']['name']).'</strong> '.OC_Util::sanitizeHTML($_['message'])); ?></p>
- <ul>
- <?php
- // Foreach requested scope
- foreach($_['requiredapps'] as $requiredapp){
- print_unescaped('<li>'.OC_Util::sanitizeHTML($requiredapp).'</li>');
- }
- ?>
- </ul>
- <a href="<?php print_unescaped(OC::$WEBROOT); ?>" id="back-home" class="button">Back to ownCloud</a>
-</div>