From: Jeff D. <da...@da...> - 2002-01-12 00:09:12
|
On Fri, 11 Jan 2002 18:05:48 -0500 "Carsten Klapp" <car...@ma...> wrote: > Note that the ||= for variable substitution only works for one variable at > this time (used by Show changes for: 1 day, etc.) Really? It works for me, I think. Regarding these comments from lib/WikiPlugin.php: // FIXME: doesn't work for multiple args // e.g. <plugin RecentChanges days||=1 show_all||=0 show_minor||=0> // url: RecentChanges?days=1+show_all=1+show_minor=0 You know this, but note that you need to use a '&' to separate query args instead of a '+'. ('+' is the url-encoding for ' ' --- a space.) So you want a URL like: http://phpwiki.sf.net/wiki/RecentChanges?day=1&show_all=1&show_minor=0 |