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:
authorVolkan Gezer <volkangezer@gmail.com>2014-04-09 04:10:01 +0400
committerVolkan Gezer <volkangezer@gmail.com>2014-04-09 04:10:01 +0400
commit0e4e1e61ecdea18bedeefb11eee5cfe23da5be42 (patch)
tree06f24f180b79766464fef42ba73256588781ca56 /admin_migrate
parent9a039a76e51bde06763c3401310e80beffcf2ed8 (diff)
Fix outdated setting layouts (admin & user page) and wrapping some strings
with t() <fieldset> tags were not used in css files and this was causing settings to be seen unaligned (enable admin_migration and see the admin page for example). changed all fieldsets into <div class='section'> instead.
Diffstat (limited to 'admin_migrate')
-rw-r--r--admin_migrate/templates/settings.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/admin_migrate/templates/settings.php b/admin_migrate/templates/settings.php
index b090d4c3e..446742f2b 100644
--- a/admin_migrate/templates/settings.php
+++ b/admin_migrate/templates/settings.php
@@ -1,5 +1,5 @@
<form id="export" action="#" method="post">
- <fieldset class="personalblock">
+ <div class="section">
<h2><?php p($l->t('Export data'));?></h2>
<p>
<input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>" id="requesttoken">
@@ -7,21 +7,21 @@
<input type="radio" id="export_system" name="export_type" value="system" /><label for="export_system"><?php p($l->t('Only system files'));?></label><br />
<input type="radio" id="export_value" name="export_type" value="userfiles" /><label for="export_value"><?php p($l->t('Only user data'));?></label><br />
<input type="submit" name="admin_export" value="<?php p($l->t('Export')); ?>" />
- </fieldset>
+ </div>
</form>
<?php
/*
* EXPERIMENTAL
?>
<form id="import" action="#" method="post" enctype="multipart/form-data">
- <fieldset class="personalblock">
+ <div class="section">
<h2><?php p($l->t('Import an ownCloud instance. THIS WILL DELETE ALL CURRENT OWNCLOUD DATA'));?></h2>
<p><?php p($l->t('All current ownCloud data will be replaced by the ownCloud instance that is uploaded.'));?>
</p>
<p><input type="file" id="owncloud_import" name="owncloud_import"><label for="owncloud_import"><?php p($l->t('ownCloud Export Zip File'));?></label>
</p>
<input type="submit" name="admin_import" value="<?php p($l->t('Import')); ?>" />
- </fieldset>
+ </div>
</form>
<?php
*/