[phpcvsview-cvs-updates] phpcvsview/Themes/Default theme.php,1.18,1.19
Status: Pre-Alpha
Brought to you by:
bcheesem
From: Brian C. <bch...@us...> - 2005-11-26 05:03:42
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1791/Themes/Default Modified Files: theme.php Log Message: Changed order of replacements for both space and br tags to enable correct XHTML output. Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Default/theme.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** theme.php 17 Sep 2005 06:45:34 -0000 1.18 --- theme.php 26 Nov 2005 05:03:34 -0000 1.19 *************** *** 254,258 **** echo ' <td align="center">'.str_replace(" ", " ", $AGE).' '.$lang['ago'].'</td>'."\n"; echo ' <td align="center">'.$File["Revisions"][$File["Head"]]["author"].'</td>'."\n"; ! echo ' <td>'.str_replace(array("\n", " "), array("<br />", " "), $File["Revisions"][$File["Head"]]["LogMessage"]).'</td>'."\n"; echo ' </tr>'."\n"; --- 254,258 ---- echo ' <td align="center">'.str_replace(" ", " ", $AGE).' '.$lang['ago'].'</td>'."\n"; echo ' <td align="center">'.$File["Revisions"][$File["Head"]]["author"].'</td>'."\n"; ! echo ' <td>'.str_replace(array(" ", "\n"), array(" ", "<br />"), $File["Revisions"][$File["Head"]]["LogMessage"]).'</td>'."\n"; echo ' </tr>'."\n"; |