atom feed7 messages in ru.sysoev.nginxRe: Why am I needing to add ampersand...
FromSent OnAttachments
jamzApr 3, 2011 3:00 pm 
Cliff WellsApr 3, 2011 8:54 pm 
jamzApr 3, 2011 9:39 pm 
jamzApr 3, 2011 9:48 pm 
Cliff WellsApr 3, 2011 10:23 pm 
jamzApr 3, 2011 10:53 pm 
Antoine BonavitaApr 5, 2011 6:16 am 
Subject:Re: Why am I needing to add ampersand manually in rewrites?
From:Cliff Wells (cli@develix.com)
Date:Apr 3, 2011 8:54:34 pm
List:ru.sysoev.nginx

On Sun, 2011-04-03 at 18:00 -0400, jamz wrote:

In a Wordpress/Buddypress installation, I am having to go through all my code and manually insert ampersands. For example, where there are links to things such as "?r=user" I am having to convert that into "?&r=user" in order for the link to do the required function. Or when it says "?_wpnonce" I am needing to change it to "?&_wpnonce".

Why would you need to do this?

& and ? don't go next to each other. ? indicates the start of query arguments and & separates them.

?_wpnonce : correct ?&_wponce : incorrect ?&r=user : incorrect ?_wponce&r=user : correct

Regards, Cliff