Topic: Trial Balance not working
To try out the new version (2.3.1), I've set a starting balance in 2008 (according to the instructions), and entered some transaction in the mid of January 2009. When I go to the Trial Balance, the dates are:
From: 17.12.2010 (??? - shouldn't it be 17.1.2010, or 1.1.2011?!)
To: 16.1.2011 (today)
Even if I change these dates to 1.1.2009 - 31.12.2009, nothing is displayed...
I've found out the reason seems to be that $_POST['TransFromDate'] isn't changed as I change it in form, so the check at the beginning of display_trial_balance() always fails. What is interesting is that the error (just 2 lines above 'return' clause) isn't displayed anymore (just initially, but not after I change the date and click 'Show' button).
Commenting out the whole:
if (isset($_POST['TransFromDate]))
{
...
}
at the beginning of display_trial_balance() function seems to resolve the problem (the trial balance is displayed after).