Fixed mysqli related warnings.
[fa-stable.git] / gl / view / accrual_trans.php
index 6d1d360dde84fea009ca178cb12a32a8efe4cc63..ab5d08f671abd880c79ff5f7642714748102fd6e 100644 (file)
@@ -64,7 +64,7 @@ $th = array_merge($first_cols, $dim_cols, $remaining_cols);
 table_header($th);
 $end = $_GET['date'];
 $account = $_GET['act'];
-$begin = add_days($end, -30);
+$begin = add_days($end, -user_transaction_days());
 
 $result = get_gl_transactions($begin, $end, -1,        $account, 0, 0, null);
 $j = 0;
@@ -105,4 +105,3 @@ end_table(1);
 
 end_page(true);
 
-?>