Support non-english topic titles

This commit is contained in:
Robin Ward
2013-02-14 17:13:03 -05:00
parent 5d4efa9100
commit 37b0c168bf
4 changed files with 23 additions and 4 deletions

View File

@@ -25,7 +25,9 @@ Discourse.Topic = Discourse.Model.extend Discourse.Presence,
).property('categoryName', 'categories')
url: (->
"/t/#{@get('slug')}/#{@get('id')}"
slug = @get('slug')
slug = "topic" if slug.isBlank()
"/t/#{slug}/#{@get('id')}"
).property('id', 'slug')
# Helper to build a Url with a post number