Subject: | Add support for XMLin() variables with `.' in them |
I'd like to have variable names with dots it them.
Example: ${session_firm.logo}, ${session_user.name}.
It should be rather simple, probably only changing
line 897 from:
$val =~ s{\$\{(\w+)\}}{ $self->get_var($1) }ge;
in:
$val =~ s{\$\{([\w\.]+)\}}{ $self->get_var($1) }ge;
I can provide also patches for tests if needed.
Thank you for your attention.