|
|
|
@ -2,17 +2,17 @@ |
|
|
|
<fieldset class="personalblock"> |
|
|
|
|
|
|
|
<p> |
|
|
|
<strong><?php echo $l->t( 'Encryption' ); ?></strong>
|
|
|
|
<strong><?php p($l->t( 'Encryption' )); ?></strong>
|
|
|
|
|
|
|
|
<?php echo $l->t( "Exclude the following file types from encryption:" ); ?>
|
|
|
|
<?php p($l->t( "Exclude the following file types from encryption:" )); ?>
|
|
|
|
<br /> |
|
|
|
|
|
|
|
<select |
|
|
|
id='encryption_blacklist' |
|
|
|
title="<?php echo $l->t( 'None' )?>" |
|
|
|
title="<?php p($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 p($type); ?>"> <?php p($type); ?> </option>
|
|
|
|
<?php endforeach;?>
|
|
|
|
</select> |
|
|
|
</p> |
|
|
|
|