diff -r 10076b28194b -r 1e40b33f2e3e plugins/SpecialLog.php --- a/plugins/SpecialLog.php Mon Apr 13 12:32:28 2009 -0400 +++ b/plugins/SpecialLog.php Mon Apr 13 12:32:36 2009 -0400 @@ -48,7 +48,7 @@ { foreach ( $params as $param ) { - if ( preg_match('/^(user|page|within|resultpage|size)=(.+?)$/', $param, $match) ) + if ( preg_match('/^([a-z]+)=(.+?)$/', $param, $match) ) { $name =& $match[1]; $value =& $match[2]; @@ -82,4 +82,5 @@ echo LogDisplay::render_row($row) . '
'; } $output->footer(); -} +} +