Ver código fonte

Trap nil object instead of string in title/description cleanup filter #2

master
Adrian Short 12 anos atrás
pai
commit
50c0b78fa0
1 arquivos alterados com 4 adições e 0 exclusões
  1. +4
    -0
      app/helpers/posts_helper.rb

+ 4
- 0
app/helpers/posts_helper.rb Ver arquivo

@@ -33,6 +33,10 @@ module PostsHelper
end
def clean_description(s)
if s.nil?
return ""
end
if s.size > 137
s = s[0..136] + '...'
end


Carregando…
Cancelar
Salvar