diff options
| -rwxr-xr-x | icon_browser.php | 4 | ||||
| -rwxr-xr-x | templates/admin_custom_modules.tpl | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/icon_browser.php b/icon_browser.php index 8cdf596..52cbadc 100755 --- a/icon_browser.php +++ b/icon_browser.php @@ -61,7 +61,7 @@ $iconUsage = [ // Communication "internet-mail" => "Email / envelope / inbox", "internet-group-chat" => "Comment / discussion", - "mail-attachment" => "Attachment / paperclip", + "stock_attach" => "Attachment / paperclip / assign", "network-transmit" => "Upload / send / RSS feed", "network-receive" => "Download", // Auth and permissions @@ -118,6 +118,8 @@ $iconUsage = [ "pdf" => "PDF", "silhouette" => "Anonymous / silhouette user", ]; +// MAINTENANCE NOTE: when an icon iname is changed in any template or plugin, +// update $iconUsage above to match, then run ?used_only=1 to verify coverage. $gBitSmarty->assign( 'iconUsage', $iconUsage ); $iconList = []; diff --git a/templates/admin_custom_modules.tpl b/templates/admin_custom_modules.tpl index 676ab5a..e43a850 100755 --- a/templates/admin_custom_modules.tpl +++ b/templates/admin_custom_modules.tpl @@ -56,7 +56,7 @@ <td>{$customModules[user].name|escape}</td> <td>{$customModules[user].title|escape}</td> <td class="alignright"> - <a href="{$smarty.const.KERNEL_PKG_URL}admin/index.php?page=layout&module_name=_custom%3Acustom%2F{$customModules[user].name}">{biticon ipackage="icons" iname="mail-attachment" iexplain=assign}</a> + <a href="{$smarty.const.KERNEL_PKG_URL}admin/index.php?page=layout&module_name=_custom%3Acustom%2F{$customModules[user].name}">{biticon ipackage="icons" iname="stock_attach" iexplain=assign}</a> <a href="{$smarty.const.KERNEL_PKG_URL}admin/index.php?page=custom_modules&name={$customModules[user].name}&action=edit">{biticon ipackage="icons" iname="document-properties" iexplain=edit}</a> <a href="{$smarty.const.KERNEL_PKG_URL}admin/index.php?page=custom_modules&name={$customModules[user].name}&action=remove">{biticon ipackage="icons" iname="edit-delete" iexplain=delete}</a> </td> |
