Rescue nil for slug_title

This commit is contained in:
manson 2014-07-30 14:19:50 +08:00
parent 8e5ab6e13e
commit a5b271afe3
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class Experience
end
def slug_title
self.organizationt_title+' '+self.department+' '+self.job_title
[self.organizationt_title,self.department,self.job_title].join(' ')
end
protected