Last modified: 2009-02-10 18:56:32 UTC
Created attachment 5801 [details] Patch for bug described The discard link on the drafts special page points to the following url: /index.php?title=Special:Drafts?discard=1&token=... Instead of pointing to: /index.php?title=Special:Drafts&discard=1&token=... Patch attached.
The extra URL params should be passed into getFullUrl() for appending rather than manually appended; this'll ensure consistent functioning whatever the $wgArticlePath format is.
Moved params into getFullUrl() as suggested. Thanks brion!
Created attachment 5802 [details] Now uses getFullUrl() correctly I didn't realize that was possible. I updated the patch so that the params are passed into getFullUrl(). It looks like it will require some work to get the entire extension using getFullUrl().