summaryrefslogtreecommitdiff
path: root/templates/ajax_file_browser_inc.tpl
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2025-08-29 13:37:38 +0100
committerlsces <lester@lsces.co.uk>2025-08-29 13:37:38 +0100
commitd5583faba3041486476eaeedee7714add9bd063b (patch)
treef2e4c4eba805efda99492d5f129cba328ba7e0e4 /templates/ajax_file_browser_inc.tpl
parentca58d77ec59e6c0dfe4e4a01f6350b4687a871cc (diff)
downloadkernel-d5583faba3041486476eaeedee7714add9bd063b.tar.gz
kernel-d5583faba3041486476eaeedee7714add9bd063b.tar.bz2
kernel-d5583faba3041486476eaeedee7714add9bd063b.zip
Templates changes to cover uninitialized variables and style changes for PHP8.4
Diffstat (limited to 'templates/ajax_file_browser_inc.tpl')
-rwxr-xr-x[-rw-r--r--]templates/ajax_file_browser_inc.tpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/ajax_file_browser_inc.tpl b/templates/ajax_file_browser_inc.tpl
index fc83975..f91c185 100644..100755
--- a/templates/ajax_file_browser_inc.tpl
+++ b/templates/ajax_file_browser_inc.tpl
@@ -4,7 +4,7 @@
<div style="margin-bottom:1em;cursor:hand;">
{foreach from=$fileList.dir item=finfo}
<div class="{cycle values="even,odd"}" style="margin-left:{$finfo.indent}px;" id="{$finfo.relpath|escape}" title="open" onclick='BitFileBrowser.browse(this.id,this.title,"{$smarty.request.ajax_path_conf}");'>
- {booticon iname="fa-folder-closed" id="image-`$finfo.relpath`" iexplain="Open"} {$finfo.name}
+ {booticon iname="icon-folder-close" id="image-`$finfo.relpath`" iexplain="Open"} {$finfo.name}
</div>
<div id="{$finfo.relpath|escape}-bitInsert"></div>
{/foreach}
@@ -16,7 +16,7 @@
</div>
{else}
<div class="{cycle values="even,odd"}" style="margin-left:{$finfo.indent}px;">
- {booticon iname="fa-triangle-exclamation" iexplain="Empty"} [{tr}empty{/tr}]
+ {booticon iname="icon-warning-sign" iexplain="Empty"} [{tr}empty{/tr}]
</div>
{/if}
{/foreach}