On Wed, 7 Jan 2015 09:15:12 AM Stefan Hornburg wrote:
On 01/07/2015 09:03 AM, Brendon Oliver wrote:
On Wed, 7 Jan 2015 08:27:33 AM Stefan Hornburg wrote:
Just messing with this module and discovered that it ignores the data_column value given in the settings.>
In _retrieve() - circa line 191: my $session_data = $session_object->session_data;
needs to be something like: my $data_column = $self->data_column(); my $session_data = $session_object->$data_column();
That is obviously a mistake. Do you mind to prepare a PR to fix it?
PR = problem report? sure, just point me in the right direction.
Github Pull Request - you clone the Git repository, fix the issue in a branch and push back to your clone.
After that you can create the pull request in Github.
ah ok... I'll see what I can do. cheers, - Brendon.