diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2015-04-01 14:50:51 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-07-01 09:08:28 +0200 |
commit | 728a22cda18845f831d65eac0c6f49b9f9b3b42f (patch) | |
tree | 8c3a6b1f7c9dbf38b948bf7d919dceeed13ff413 /apps/files_external/templates | |
parent | b5c9196ffcf8f5300d96e7d2bdd78f2695f6fd7a (diff) | |
download | nextcloud-server-728a22cda18845f831d65eac0c6f49b9f9b3b42f.tar.gz nextcloud-server-728a22cda18845f831d65eac0c6f49b9f9b3b42f.zip |
Use OCP classes as much as possible in files_external
Diffstat (limited to 'apps/files_external/templates')
-rw-r--r-- | apps/files_external/templates/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index b886c2e1b1b..d5aba6fc80b 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -16,7 +16,7 @@ <tbody> <?php $_['mounts'] = array_merge($_['mounts'], array('' => array('id' => ''))); ?> <?php foreach ($_['mounts'] as $mount): ?> - <tr <?php print_unescaped(isset($mount['mountpoint']) ? 'class="'.OC_Util::sanitizeHTML($mount['class']).'"' : 'id="addMountPoint"'); ?> data-id="<?php p($mount['id']) ?>"> + <tr <?php print_unescaped(isset($mount['mountpoint']) ? 'class="'.\OCP\Util::sanitizeHTML($mount['class']).'"' : 'id="addMountPoint"'); ?> data-id="<?php p($mount['id']) ?>"> <td class="status"> <span></span> </td> |