https://bugzilla.wikimedia.org/show_bug.cgi?id=23716
--- Comment #8 from [email protected] 2010-11-03 23:51:42 UTC --- I think you've misunderstood me. I'm talking about rollbacks to individual comments, not the page header. Anyway, it seems the fix for this is simple: in Dispatch.php, in static function threadPermalinkMain, there is a elseif ( $action == 'delete' } branch, just add 'rollback' and 'markpatrolled', i.e.: } elseif ( $action == 'rollback' || $action = 'markpatrolled' || $action = 'delete' ) { return true; The current version of LQT tries to call LqtView::postEditUpdates() which doesn't exist any more, so rollback errors out, but it does roll back the edit, and mark as patrolled works. So I'm guessing this should work. -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
