View Single Post
  #3  
Old 22nd September 2016, 13:48
kira kira is offline
Senior Member
 
Join Date: Jul 2011
France
Posts: 69
Default
Problem fixed

in file details.php
found
PHP Code:
if (!empty($torrents_txt["descr"])) $HTMLOUT.= "<tr><td style='vertical-align:top'><b>{$lang['details_description']}</b></td><td><div style='background-color:transparent;width:100%;height:150px;overflow: auto'>".str_replace(array(
    
"\n",
    
"  "
) , array(
    
"<br />\n",
    
"&nbsp; "
) , format_comment($torrents_txt["descr"]))."</div></td></tr>"
replace to
PHP Code:
if (!empty($torrents_txt["descr"])) $HTMLOUT.=  "<tr><td  style='vertical-align:top'><b>{$lang['details_description']}</b></td><td><div  style='background-color:transparent;width:100%;'>".format_comment($torrents_txt["descr"])."</div></td></tr>"

Last edited by kira; 22nd September 2016 at 15:57.
Reply With Quote
The Following User Says Thank You to kira For This Useful Post:
Protheush (26th September 2016)