Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
adrianshort
/
apollo
espelhamento de
https://github.com/adrianshort/apollo.git
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Versões
0
Wiki
Atividade
Ver código fonte
Trap nil object instead of string in title/description cleanup filter
#2
master
Adrian Short
12 anos atrás
pai
141d03ab95
commit
50c0b78fa0
1 arquivos alterados
com
4 adições
e
0 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+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
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar