Index: trunk/extensions/CheckUser/CheckUser.php |
— | — | @@ -45,12 +45,6 @@ |
46 | 46 | |
47 | 47 | $agent = wfGetAgent(); |
48 | 48 | |
49 | | - $rc_actiontext=''; |
50 | | - if ( $rc_type==RC_LOG ) { |
51 | | - $title = Title::newFromText( $rc_title, $rc_namespace ); |
52 | | - $rc_actiontext = LogPage::actionText( $rc_log_type, $rc_log_action, $title, NULL, LogPage::extractParams($rc_params), false, false, true ); |
53 | | - } |
54 | | - |
55 | 49 | $dbw->insert( 'cu_changes', |
56 | 50 | array( |
57 | 51 | 'cuc_namespace' => $rc_namespace, |
— | — | @@ -58,7 +52,7 @@ |
59 | 53 | 'cuc_minor' => $rc_minor, |
60 | 54 | 'cuc_user' => $rc_user, |
61 | 55 | 'cuc_user_text' => $rc_user_text, |
62 | | - 'cuc_actiontext' => $rc_actiontext, |
| 56 | + 'cuc_actiontext' => '', |
63 | 57 | 'cuc_comment' => $rc_comment, |
64 | 58 | 'cuc_page_id' => $rc_cur_id, |
65 | 59 | 'cuc_this_oldid' => $rc_this_oldid, |