Index: trunk/extensions/APC/APCCacheMode.php |
— | — | @@ -230,13 +230,14 @@ |
231 | 231 | } |
232 | 232 | |
233 | 233 | protected function options() { |
234 | | - global $wgLang; |
| 234 | + global $wgLang, $wgScript; |
235 | 235 | |
236 | 236 | $s = |
237 | 237 | Xml::openElement( 'fieldset' ) . |
238 | 238 | Xml::element( 'legend', null, wfMsg( 'viewapc-ls-options-legend' ) ) . |
239 | | - Xml::openElement( 'form', array( 'action' => $this->title->getLocalURl() ) ); |
| 239 | + Xml::openElement( 'form', array( 'action' => $wgScript ) ); |
240 | 240 | |
| 241 | + $s .= Xml::hidden( 'title', $this->title->getPrefixedText() ); |
241 | 242 | foreach ( $this->opts->getUnconsumedValues() as $key => $value ) { |
242 | 243 | $s .= Xml::hidden( $key, $value ); |
243 | 244 | } |