views:

36

answers:

1

I have usual url, where params and values are separated by /

And i have this url piece

word//show-count/1

On my local machine zend retrieves

word = ''
show-count = '1'

On test-machine it retrieves

word = 'show\-count'

Why it happens and who is guilty. I think, that problem is in ignoring double //

A: 

Bizarre indeed. I think you need to fix the fact that there is a // in there in the first place.

Paul Dragoonis
I think it just means that "word" parameter is empty.
Piotr Pankowski
that's right and it should be fine, but his example is giivng him probs so a solution would be to fix the blank //
Paul Dragoonis