lexik / LexikPayboxBundle

LexikPayboxBundle eases the implementation of the Paybox payment system
MIT License
40 stars 47 forks source link

PBX_RANG parameter malformed #32

Closed pascalgardeur closed 10 years ago

pascalgardeur commented 10 years ago

Hi,

In my config.yml: lexik_paybox: parameters: rank: 01

The form show: input type="hidden" value="1" name="PBX_RANG"

This is wrong because the value must be 2 characters, otherwise the message "error protection" appears.

Thank you to correct it. PG

nykopol commented 10 years ago

change your config with : rank: '01' Otherwise you parameter is interpreted as an numeric so the 0 is not preserved.

pascalgardeur commented 10 years ago

Thank you