Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_bbcode
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11127/plugins/serendipity_event_bbcode
Modified Files:
Tag: branch-smarty
serendipity_event_bbcode.php
Log Message:
s/ | / || /
I don't even know how bitwise comparison works, so why bother using it? ;-))
Index: serendipity_event_bbcode.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_bbcode/serendipity_event_bbcode.php,v
retrieving revision 1.7.2.2
retrieving revision 1.7.2.3
diff -u -d -r1.7.2.2 -r1.7.2.3
--- serendipity_event_bbcode.php 22 Sep 2004 10:58:57 -0000 1.7.2.2
+++ serendipity_event_bbcode.php 22 Sep 2004 11:48:07 -0000 1.7.2.3
@@ -182,7 +182,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;
}
|