plugins/SpecialLog.php
changeset 905 1e40b33f2e3e
parent 901 99ea0b0ac4be
child 909 94c1ff984286
--- 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) . '<br />';
   }
   $output->footer();
-} 
+}
+