Closed olimortimer closed 8 years ago
How to fix it? when i have more than 9 match_replacment?
hmm. More than 9 replacement is a sign that something is wrong.
How to fix it? when i have more than 9 match_replacment?
The merged commit should fix it
hmm. More than 9 replacement is a sign that something is wrong.
Care to elaborate?
If you use add_column, and attempt to pass more than 9 match_replacements (ie, $10, $11 etc), the exec_replace replacement function doesn't work. This is due to exec_replace running through each key in order, which causes $1 (foo) to also replace $11, $12 etc with foo1, foo2 etc.
Probably not the greatest solution, but it works