Update of /cvsroot/mantisbt/web
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1040
Modified Files:
changelog.php
Log Message:
Added a wordwrap since the file was getting very large horizontally
Index: changelog.php
===================================================================
RCS file: /cvsroot/mantisbt/web/changelog.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- changelog.php 23 Dec 2004 15:37:03 -0000 1.4
+++ changelog.php 23 Dec 2004 15:44:37 -0000 1.5
@@ -8,7 +8,8 @@
<?php
$lines = file("files/ChangeLog");
foreach ( $lines as $line ) {
- echo htmlspecialchars($line);
+ $line = wordwrap( $line, 98 );
+ echo htmlspecialchars( $line );
}
?>
</pre>
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
|