summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/templates
diff options
context:
space:
mode:
authorSam Tuke <samtuke@owncloud.com>2013-01-24 18:37:34 +0000
committerSam Tuke <samtuke@owncloud.com>2013-01-24 18:37:34 +0000
commit094213e23171c274e0c88fab02ad2c23d37217ce (patch)
treed6139e5e5244321494929b1931d36fcc7a959eaf /apps/files_encryption/templates
parent59ca312263d358c95b950266c678c71bf97716f3 (diff)
downloadnextcloud-server-094213e23171c274e0c88fab02ad2c23d37217ce.tar.gz
nextcloud-server-094213e23171c274e0c88fab02ad2c23d37217ce.zip
Fixed many coding guidelines issues
Continued work on upgrade path via login hook listener New spec file with notes
Diffstat (limited to 'apps/files_encryption/templates')
-rw-r--r--apps/files_encryption/templates/settings-personal.php10
-rw-r--r--apps/files_encryption/templates/settings.php8
2 files changed, 9 insertions, 9 deletions
diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php
index c8144da5633..ad34a0d78b9 100644
--- a/apps/files_encryption/templates/settings-personal.php
+++ b/apps/files_encryption/templates/settings-personal.php
@@ -1,6 +1,6 @@
<form id="encryption">
<fieldset class="personalblock">
- <strong><?php echo $l->t('Choose encryption mode:'); ?></strong>
+ <strong><?php echo $l->t( 'Choose encryption mode:' ); ?></strong>
<p>
<input
type="hidden"
@@ -14,9 +14,9 @@
name="encryption_mode"
value="server"
id='server_encryption'
- style="width:20px;" <?php if ($_['encryption_mode'] == 'server') echo "checked='checked'"?>
+ style="width:20px;" <?php if ( $_['encryption_mode'] == 'server' ) echo "checked='checked'" ?>
/>
- <?php echo $l->t('Server side encryption (allows you to access your files from the web interface)'); ?>
+ <?php echo $l->t( 'Server side encryption (allows you to access your files from the web interface)' ); ?>
<br />
<input
@@ -25,9 +25,9 @@
value="none"
id='none_encryption'
style="width:20px;"
- <?php if ($_['encryption_mode'] == 'none') echo "checked='checked'"?>
+ <?php if ( $_['encryption_mode'] == 'none' ) echo "checked='checked'" ?>
/>
- <?php echo $l->t('None (no encryption at all)'); ?>
+ <?php echo $l->t( 'None (no encryption at all)' ); ?>
<br/>
</p>
</fieldset>
diff --git a/apps/files_encryption/templates/settings.php b/apps/files_encryption/templates/settings.php
index 17ac1fd224f..f7ef8a8efe6 100644
--- a/apps/files_encryption/templates/settings.php
+++ b/apps/files_encryption/templates/settings.php
@@ -2,17 +2,17 @@
<fieldset class="personalblock">
<p>
- <strong><?php echo $l->t('Encryption'); ?></strong>
+ <strong><?php echo $l->t( 'Encryption' ); ?></strong>
- <?php echo $l->t("Exclude the following file types from encryption:"); ?>
+ <?php echo $l->t( "Exclude the following file types from encryption:" ); ?>
<br />
<select
id='encryption_blacklist'
- title="<?php echo $l->t('None')?>"
+ title="<?php echo $l->t( 'None' )?>"
multiple="multiple">
<?php foreach($_["blacklist"] as $type): ?>
- <option selected="selected" value="<?php echo $type;?>"> <?php echo $type;?> </option>
+ <option selected="selected" value="<?php echo $type; ?>"> <?php echo $type; ?> </option>
<?php endforeach;?>
</select>
</p>