Update of /cvsroot/webnotes/webnotes/themes/classic
In directory usw-pr-cvs1:/tmp/cvs-serv17699/themes/classic
Modified Files:
theme_api.php
Log Message:
Some fixes as recommended by HTMLTidy.
Index: theme_api.php
===================================================================
RCS file: /cvsroot/webnotes/webnotes/themes/classic/theme_api.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- theme_api.php 11 Sep 2002 09:49:55 -0000 1.4
+++ theme_api.php 15 Sep 2002 05:08:05 -0000 1.5
@@ -68,9 +68,9 @@
}
if ( isset( $p_note_info_array['note'] ) ) {
- $t_note = $p_note_info_array['note'];
+ $t_note = '<pre>' . $p_note_info_array['note'] . '</pre>';
} else {
- $t_note = '';
+ $t_note = ' ';
}
echo <<<EOT
@@ -78,7 +78,7 @@
<td> <em><a href="mailto:$t_email">$t_email</a></em> - $t_date</td>
</tr>
<tr bgcolor="$g_primary_light_color">
- <td><pre>$t_note</pre></td>
+ <td>$t_note</td>
</tr>
<tr bgcolor="$g_white_color" height="2">
<td></td>
|