(refs #327)Move feed.scala.xml to helper package because it breaks compilation by overriding xml package

This commit is contained in:
takezoe
2014-04-18 07:04:31 +09:00
parent 86f0307633
commit b60e2c07c7
2 changed files with 1 additions and 1 deletions

View File

@@ -48,7 +48,7 @@ trait IndexControllerBase extends ControllerBase {
get("/activities.atom"){ get("/activities.atom"){
contentType = "application/atom+xml; type=feed" contentType = "application/atom+xml; type=feed"
xml.feed(getRecentActivities()) helper.xml.feed(getRecentActivities())
} }
/** /**