Index: trunk/phase3/includes/LogEventsList.php |
— | — | @@ -892,7 +892,6 @@ |
893 | 893 | public function getQueryInfo() { |
894 | 894 | $tables = array( 'logging', 'user' ); |
895 | 895 | $this->mConds[] = 'user_id = log_user'; |
896 | | - $groupBy = false; |
897 | 896 | $index = array(); |
898 | 897 | $options = array(); |
899 | 898 | # Add log_search table if there are conditions on it |
— | — | @@ -916,7 +915,6 @@ |
917 | 916 | } |
918 | 917 | $options['USE INDEX'] = $index; |
919 | 918 | # Don't show duplicate rows when using log_search |
920 | | - if( $groupBy ) $options['GROUP BY'] = $groupBy; |
921 | 919 | $info = array( |
922 | 920 | 'tables' => $tables, |
923 | 921 | 'fields' => array( 'log_type', 'log_action', 'log_user', 'log_namespace', |