Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrok <brejktru@gmail.com>2012-03-03 00:32:17 +0400
committerRobin Appelman <icewind@owncloud.com>2012-03-07 17:59:19 +0400
commitf79b32c8832449e0021061c63e369b5538d8acb4 (patch)
tree3f5e2138d98c5af751acc561d5a6cb03ca1fc5a2 /external/settings.php
parentd543c9e20ce1648688a25bedc01a6708243d7052 (diff)
Ability to save an arbitrary number of external sites
Diffstat (limited to 'external/settings.php')
-rw-r--r--external/settings.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/external/settings.php b/external/settings.php
index 3e0c34251..416c9a5c1 100644
--- a/external/settings.php
+++ b/external/settings.php
@@ -6,17 +6,5 @@ OC_Util::addScript( "external", "admin" );
$tmpl = new OC_Template( 'external', 'settings');
- $tmpl->assign('s1name',OC_Appconfig::getValue( "external","site1name", '' ));
- $tmpl->assign('s2name',OC_Appconfig::getValue( "external","site2name", '' ));
- $tmpl->assign('s3name',OC_Appconfig::getValue( "external","site3name", '' ));
- $tmpl->assign('s4name',OC_Appconfig::getValue( "external","site4name", '' ));
- $tmpl->assign('s5name',OC_Appconfig::getValue( "external","site5name", '' ));
-
- $tmpl->assign('s1url',OC_Appconfig::getValue( "external","site1url", '' ));
- $tmpl->assign('s2url',OC_Appconfig::getValue( "external","site2url", '' ));
- $tmpl->assign('s3url',OC_Appconfig::getValue( "external","site3url", '' ));
- $tmpl->assign('s4url',OC_Appconfig::getValue( "external","site4url", '' ));
- $tmpl->assign('s5url',OC_Appconfig::getValue( "external","site5url", '' ));
-
return $tmpl->fetchPage();
?>