Topic: Duplicated ID in gl_bank.php

at line 404 in gl_bank.php calls function gl_options_controls() which calls div_start('footer') in gl_bank_ui.inc

This is makes 2 elements with same id = 'footer' which would causes conflict.

does this need to change ?

Phuong

Re: Duplicated ID in gl_bank.php

The function gl_options_controls is defined (but not used) differently in the following files (only the second one has the footer in it):

gl/includes/ui/gl_journal_ui.inc
gl/includes/ui/gl_bank_ui.inc

The said function is called in the following files by including the respective file above:

gl/gl_journal.php
gl/gl_bank.php

Let us first start naming global functions uniquely.
The said function may need to be fixed in the file gl/includes/ui/gl_bank_ui.inc and if the function is renamed for uniqueness, then the corresponding function call in gl/gl_bank.php too should be corrected.