Added comment to SECURE_ONLY constant.
[fa-stable.git] / dimensions / view / view_dimension.php
index 2fe540712d37d2f498ba7365da593545119e518d..b6b3df7386463f8c3ef2060df6ecc19f27f6aa08 100644 (file)
@@ -15,7 +15,7 @@ $path_to_root = "../..";
 include_once($path_to_root . "/includes/session.inc");
 
 $js = "";
-if ($use_date_picker)
+if (user_use_date_picker())
        $js .= get_js_date_picker();
 page(_($help_context = "View Dimension"), true, false, "", $js);
 
@@ -35,21 +35,22 @@ if (isset($_GET['trans_no']) && $_GET['trans_no'] != "")
 if (isset($_POST['Show']))
 {
        $id = $_POST['trans_no'];
+       $Ajax->activate('_page_body');
 }
 
 
 display_heading($systypes_array[ST_DIMENSION] . " # " . $id);
 
 br(1);
-$myrow = get_dimension($id);
+$myrow = get_dimension($id, true);
 
-if (strlen($myrow[0]) == 0)
+if ($myrow == false)
 {
        echo _("The dimension number sent is not valid.");
     exit;
 }
 
-start_table($table_style);
+start_table(TABLESTYLE);
 
 $th = array(_("#"), _("Reference"), _("Name"), _("Type"), _("Date"), _("Due Date"));
 table_header($th);
@@ -74,7 +75,7 @@ if ($myrow["closed"] == true)
 
 start_form();
 
-start_table("class='tablestyle_noborder'");
+start_table(TABLESTYLE_NOBORDER);
 start_row();
 
 if (!isset($_POST['TransFromDate']))
@@ -95,6 +96,5 @@ display_dimension_balance($id, $_POST['TransFromDate'], $_POST['TransToDate']);
 
 br(1);
 
-end_page(true);
+end_page(true, false, false, ST_DIMENSION, $id);
 
-?>