Changeset 1743

Show
Ignore:
Timestamp:
07/13/07 18:01:15 (17 months ago)
Author:
mbonetti
Message:

removed PHP short tags

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/gregarius/plugins/dblclicktoread.php

    r1668 r1743  
    2929/// Author: Marco Bonetti 
    3030/// Description: Marks an item as read when you doubleclick its whitespace 
    31 /// Version: 1.9 
     31/// Version: 1.91 
    3232 
    3333/** 
     
    3939 * 1.8  Switched to the rss_bootstrap caching method  
    4040 * 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 
    4142 */ 
    4243 
     
    8081                } 
    8182                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 ?>) { 
    8586                    setItemHide(id, (c == 0)); 
    8687                } else{ 
     
    102103                } 
    103104                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 ?>) { 
    107108                    setItemHide(id, (c == 0)); 
    108109                } else{