X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=admin%2Fcreate_coy.php;h=8ec0fc4a73d7f63deaaa4a22eaa8112991ff30a8;hb=3385ff8d1dd47f62bc068191134bbf9406a8960f;hp=50dcca0f7eac15fea79ecb8e5a63efde8d626539;hpb=388b76390023fb33ed063682cb2ddb3b14a9ce15;p=fa-stable.git diff --git a/admin/create_coy.php b/admin/create_coy.php index 50dcca0f..8ec0fc4a 100644 --- a/admin/create_coy.php +++ b/admin/create_coy.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security = 20; $path_to_root=".."; include_once($path_to_root . "/includes/session.inc"); @@ -11,7 +20,7 @@ include_once($path_to_root . "/includes/ui.inc"); page(_("Create/Update Company")); -$comp_subdirs = array('images', 'pdf_files', 'backup','js_cache', 'reporting'); +$comp_subdirs = array('images', 'pdf_files', 'backup','js_cache', 'reporting', 'attachments'); //--------------------------------------------------------------------------------------------- if (isset($_GET['selected_id'])) @@ -227,9 +236,16 @@ function display_companies() label_cell($conn[$i]['dbname']); label_cell($conn[$i]['tbpref']); label_cell($what); - label_cell("" . _("Edit") . ""); + $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( $i == $coyno ? '' : - "" . _("Delete") . ""); + "$delete"); end_row(); }