Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hobo_rapid/taglibs/html/a.dryml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ The standard AJAX attributes are supported.
nil_view
elsif action == "new"
# Link to a new object form
new_record = target.respond_to?(:build) ? target.build : target.new
new_record = (target.class==Array) ? target.member_class.new : target.new
new_record.set_creator(current_user)
href = object_url(target, "new", params._?.merge(:subsite => subsite))

Expand Down