When using the module we noticed an error while handling decimal values.

Diving into the code showed that a variable is not properly created.

In the file theme.inc on the Line 310 the variable decimal is created with a double $ sign

Changing $$decimal to $decimal corrects the problem.

A simple fix that could be integred very quickly ;-)