X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=includes%2Fui%2Fui_controls.inc;h=d9d1f05759994e08cb910ad7fbb22cea81e9755f;hb=0b0690657989cd259e5966faaac7cacbfa89cee2;hp=9d52934fad5fdf9e7fa6ece110d05efb4b446b12;hpb=bc426821d8ae6319bd9394ac275bb700e6394fc3;p=fa-stable.git diff --git a/includes/ui/ui_controls.inc b/includes/ui/ui_controls.inc index 9d52934f..d9d1f057 100644 --- a/includes/ui/ui_controls.inc +++ b/includes/ui/ui_controls.inc @@ -63,7 +63,8 @@ function hyperlink_back($center=true) { if ($center) echo "
"; - echo ""._("Back")."\n"; + //echo ""._("Back")."\n"; + echo "

"._("Back")."

\n"; if ($center) echo "
"; echo "
"; @@ -150,19 +151,22 @@ function table_header($labels) end_row(); } -function edit_link_cell($param) +function edit_link_cell($param, $title=false) { - label_cell("" . _("Edit") . "", "nowrap"); + label_cell("" . _("Edit") . "", "nowrap"); } -function delete_link_cell($param) +function delete_link_cell($param, $title=false) { - label_cell("" . _("Delete") . "", "nowrap"); + label_cell("" . _("Delete") . "", "nowrap"); } -function edit_button_cell($name, $value) +function edit_button_cell($name, $value, $title=false) { - label_cell("\n"); + label_cell("\n"); } //-----------------------------------------------------------------------------------