Added 'View Attachments' if any in all popup view windows
[fa-stable.git] / dimensions / view / view_dimension.php
index 9dfc01e867e184be993ad44104da45cc7185689f..98668027c1f617629069a2e747e8dd766290e005 100644 (file)
@@ -17,7 +17,7 @@ include_once($path_to_root . "/includes/session.inc");
 $js = "";
 if ($use_date_picker)
        $js .= get_js_date_picker();
-page(_("View Dimension"), true, false, "", $js);
+page(_($help_context = "View Dimension"), true, false, "", $js);
 
 include_once($path_to_root . "/includes/date_functions.inc");
 include_once($path_to_root . "/includes/data_checks.inc");
@@ -38,7 +38,7 @@ if (isset($_POST['Show']))
 }
 
 
-display_heading(systypes::name(systypes::dimension()) . " # " . $id);
+display_heading($systypes_array[ST_DIMENSION] . " # " . $id);
 
 br(1);
 $myrow = get_dimension($id);
@@ -63,7 +63,7 @@ label_cell(sql2date($myrow["date_"]));
 label_cell(sql2date($myrow["due_date"]));
 end_row();
 
-comments_display_row(systypes::dimension(), $id);
+comments_display_row(ST_DIMENSION, $id);
 
 end_table();
 
@@ -95,6 +95,6 @@ display_dimension_balance($id, $_POST['TransFromDate'], $_POST['TransToDate']);
 
 br(1);
 
-end_page(true);
+end_page(true, false, false, ST_DIMENSION, $id);
 
 ?>