Deporteando (@albertof) |
1.- the text goes off the screen In the description and comments photos and blogs
how to fix
2.- When you publish a blog stays sending
file: includes/libs/ss.inc.php function stream_display
old
[code]
$row['message'] .= '<div>'.nl2br(h($story['content'])).'</div>';
[/code]
new
[code]
$row['message'] .= '<div style="word-wrap: break-word;">'.nl2br(h($story['content'])).'</div>';
[/code]
function stream_display
old
[code]
<td class="user_post_right" valign="top">
[/code]
new
[code]
<td class="user_post_right" valign="top" style="word-break: break-all;">
[/code]
Jcow Master @falcone
114 months ago
|