Hi there, thanks for the template, it works like a charm. But yesterday I saw an error, and after some debugging I saw it was caused by a double parameter in the URL. Don't ask, it shouldn't be there, but in this case it happens sometimes ;)
For example:
demo .com / page ?param1=yes ¶m2=ok ¶m1=no
The template will break on the toLowerCase() calls, because the input is no longer a string but an object (array with both param1 values). I made a small workaround in the code, but I can imagine other people will also have this problem.
Hi there, thanks for the template, it works like a charm. But yesterday I saw an error, and after some debugging I saw it was caused by a double parameter in the URL. Don't ask, it shouldn't be there, but in this case it happens sometimes ;)
For example:
demo .com / page ?param1=yes ¶m2=ok ¶m1=no
The template will break on the toLowerCase() calls, because the input is no longer a string but an object (array with both param1 values). I made a small workaround in the code, but I can imagine other people will also have this problem.