Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_contentrewrite
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16122
Modified Files:
Tag: branch_0_6
serendipity_event_contentrewrite.php
Log Message:
Use fully compatible syntax to fix Tobias Schlitts blog. *g*
Index: serendipity_event_contentrewrite.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_contentrewrite/serendipity_event_contentrewrite.php,v
retrieving revision 1.5.4.2
retrieving revision 1.5.4.3
diff -u -d -r1.5.4.2 -r1.5.4.3
--- serendipity_event_contentrewrite.php 13 Apr 2004 10:01:12 -0000 1.5.4.2
+++ serendipity_event_contentrewrite.php 17 Apr 2004 12:12:59 -0000 1.5.4.3
@@ -221,8 +221,8 @@
foreach($this->rewrite_from AS $key => $val) {
?>
<tr>
- <th style="font-size: 8pt; font-color: white;"><?= htmlspecialchars($val); ?></th>
- <td><?= htmlspecialchars($this->rewrite_to[$key]); ?></td>
+ <th style="font-size: 8pt; font-color: white;"><?php echo htmlspecialchars($val); ?></th>
+ <td><?php echo htmlspecialchars($this->rewrite_to[$key]); ?></td>
</tr>
<?php
}
|