Skip to content

Fix for issue 45

Rich requested to merge issue/45 into master

Created by: artfulrobot

Assumed input params to be strings and comparing with == but the membership forms include nested arrays with numeric keys. Since 'some string' evaluates to 0, 0 == 'some string' and the first string tested was first name, so that got clobbered. Using === instead has solved this.

Merge request reports