- Timestamp:
- 07/13/07 18:01:15 (17 months ago)
- Files:
-
- 1 modified
-
trunk/gregarius/plugins/dblclicktoread.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/plugins/dblclicktoread.php
r1668 r1743 29 29 /// Author: Marco Bonetti 30 30 /// Description: Marks an item as read when you doubleclick its whitespace 31 /// Version: 1.9 31 /// Version: 1.91 32 32 33 33 /** … … 39 39 * 1.8 Switched to the rss_bootstrap caching method 40 40 * 1.9 Set the cache-validity to 0 to cause a reload when loggin in and out -- Sameer 41 * 1.91 Stupid PHP short tags -- Marco 41 42 */ 42 43 … … 80 81 } 81 82 id=r1[1]; 82 s =r1[2] & <? =SET_MODE_READ_STATE ?>;83 if ((sel = document.getElementById('<? =SHOW_WHAT ?>')) &&84 sel.options[sel.selectedIndex].value == <? =SHOW_UNREAD_ONLY ?>) {83 s =r1[2] & <?php echo SET_MODE_READ_STATE ?>; 84 if ((sel = document.getElementById('<?php echo SHOW_WHAT ?>')) && 85 sel.options[sel.selectedIndex].value == <?php echo SHOW_UNREAD_ONLY ?>) { 85 86 setItemHide(id, (c == 0)); 86 87 } else{ … … 102 103 } 103 104 id=r1[1]; 104 s =r1[2] & <? =SET_MODE_READ_STATE ?>;105 if ((sel = document.getElementById('<? =SHOW_WHAT ?>')) &&106 sel.options[sel.selectedIndex].value == <? =SHOW_UNREAD_ONLY ?>) {105 s =r1[2] & <?php echo SET_MODE_READ_STATE ?>; 106 if ((sel = document.getElementById('<?php echo SHOW_WHAT ?>')) && 107 sel.options[sel.selectedIndex].value == <?php echo SHOW_UNREAD_ONLY ?>) { 107 108 setItemHide(id, (c == 0)); 108 109 } else{
