Created
July 15, 2010 20:36
-
-
Save GeekOnCoffee/477496 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Admin::CommentsController.class_eval do | |
def parent_object | |
if parent? && parent_type == :order | |
Order.find_by_number(params[:order_id]) ||Order.find(params[:order_id]) | |
else | |
super | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment