We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2f3375b#commitcomment-44633990
Line 347 in gl/includes/db/gl_db_bank_accounts.inc:
gl/includes/db/gl_db_bank_accounts.inc
$id = $row ? get_default_bank_account($row[0])['id'] : 0;
is valid for PHP >= 5.4. For older versions of PHP like 5.3.3, etc, replace the said line with:
$id = 0; if ($a = get_default_bank_account($row[0])) { $id = $a['id']; unset ($a); }
The text was updated successfully, but these errors were encountered:
https://frontaccounting.com/punbb/viewtopic.php?id=9097
Sorry, something went wrong.
FA 2.4.9
6d7bfaf
FrontAccountingERP/FA@a97092f FrontAccountingERP/FA@3aea5a7 https://frontaccounting.com/punbb/viewtopic.php?id=9117
PHP < 5.4 compatibility fixed
ecb8221
FrontAccountingERP/FA#42 https://frontaccounting.com/punbb/viewtopic.php?id=9097
No branches or pull requests
2f3375b#commitcomment-44633990
Line 347 in
gl/includes/db/gl_db_bank_accounts.inc
:is valid for PHP >= 5.4.
For older versions of PHP like 5.3.3, etc, replace the said line with:
The text was updated successfully, but these errors were encountered: