This website works better with JavaScript.
Почетна
Преглед
Помоћ
Пријавите Се
adrianshort
/
apollo
огледало од
https://github.com/adrianshort/apollo.git
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Издања
0
Вики
Activity
Преглед изворни кода
Trap nil object instead of string in title/description cleanup filter
#2
master
Adrian Short
пре 12 година
родитељ
141d03ab95
комит
50c0b78fa0
1 измењених фајлова
са
4 додато
и
0 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
app/helpers/posts_helper.rb
+ 4
- 0
app/helpers/posts_helper.rb
Прегледај датотеку
@@ -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
Write
Preview
Loading…
Откажи
Сачувај