mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
posts with no url should return a 404
This commit is contained in:
parent
267d8be1f5
commit
75b4972682
1 changed files with 5 additions and 1 deletions
|
@ -340,7 +340,11 @@ class Post < ActiveRecord::Base
|
|||
end
|
||||
|
||||
def url
|
||||
Post.url(topic.slug, topic.id, post_number)
|
||||
if topic
|
||||
Post.url(topic.slug, topic.id, post_number)
|
||||
else
|
||||
"/404"
|
||||
end
|
||||
end
|
||||
|
||||
def self.url(slug, topic_id, post_number)
|
||||
|
|
Loading…
Reference in a new issue