X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Finst_module.php;h=809252dff1defdde0d7d1c53d1862e961dfd135b;hb=916c3a6fd1dfd8dcf19ff5eb70e49b3bf3c5a338;hp=1e0017682268c34a541a84328421b8b90edc6f5d;hpb=f3123ed641f15e1a4abcacda73569a199d211bfe;p=fa-stable.git diff --git a/admin/inst_module.php b/admin/inst_module.php index 1e001768..809252df 100644 --- a/admin/inst_module.php +++ b/admin/inst_module.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security = 20; $path_to_root=".."; include_once($path_to_root . "/includes/session.inc"); @@ -279,8 +288,15 @@ function display_modules() label_cell($mods[$i]['name']); label_cell($mods[$i]['path']); label_cell($mods[$i]['filename']); - edit_link_cell("selected_id=" . $i); - label_cell("" . _("Delete") . ""); + $edit = _("Edit"); + $delete = _("Delete"); + if (user_graphic_links()) + { + $edit = set_icon(ICON_EDIT, $edit); + $delete = set_icon(ICON_DELETE, $delete); + } + label_cell("$edit"); + label_cell("$delete"); end_row(); }