Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_emoticate
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11127/plugins/serendipity_event_emoticate
Modified Files:
Tag: branch-smarty
serendipity_event_emoticate.php
Log Message:
s/ | / || /
I don't even know how bitwise comparison works, so why bother using it? ;-))
Index: serendipity_event_emoticate.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_emoticate/serendipity_event_emoticate.php,v
retrieving revision 1.10.2.2
retrieving revision 1.10.2.3
diff -u -d -r1.10.2.2 -r1.10.2.3
--- serendipity_event_emoticate.php 22 Sep 2004 10:58:57 -0000 1.10.2.2
+++ serendipity_event_emoticate.php 22 Sep 2004 11:48:07 -0000 1.10.2.3
@@ -126,7 +126,7 @@
case 'frontend_display':
foreach ($this->markup_elements as $temp) {
- if (isset($eventData['is_cached']) && $eventData['is_cached'] && ($temp['element'] == 'body' | $temp['element'] == 'extended')) {
+ if (isset($eventData['is_cached']) && $eventData['is_cached'] && ($temp['element'] == 'body' || $temp['element'] == 'extended')) {
continue;
}
|