Browse Source

fix single quote sanitization

tags/v7.0.0alpha2
Volkan Gezer 10 years ago
parent
commit
6de6f68ae2
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      apps/files_external/templates/settings.php

+ 1
- 1
apps/files_external/templates/settings.php View File

@@ -27,7 +27,7 @@
placeholder="<?php p($l->t('Folder name')); ?>" /></td>
<?php if (!isset($mount['mountpoint'])): ?>
<td class="backend">
<select id="selectBackend" data-configurations='<?php print_unescaped(json_encode($_['backends'])); ?>'>
<select id="selectBackend" data-configurations='<?php p(json_encode($_['backends'])); ?>'>
<option value="" disabled selected
style="display:none;"><?php p($l->t('Add storage')); ?></option>
<?php foreach ($_['backends'] as $class => $backend): ?>

Loading…
Cancel
Save