| 
      
      
      From: <ji...@us...> - 2009-01-30 23:04:03
      
     | 
| Update of /cvsroot/phpicalendar/phpicalendar/rss In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9060/rss Modified Files: rss_common.php Log Message: line feeds in rss feeds Index: rss_common.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/rss/rss_common.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** rss_common.php 4 Jan 2009 21:58:18 -0000 1.6 --- rss_common.php 30 Jan 2009 21:45:54 -0000 1.7 *************** *** 186,189 **** --- 186,190 ---- # $event_text = word_wrap($event_text, 21, $tomorrows_events_lines); $description = stripslashes(urldecode($val["description"])); + $description = str_replace('<br />',"\n",$description); $description = strip_tags($description, '<b><i><u>'); $description = str_replace('&','&',$description); |