Changeset 1737 for trunk/gregarius/themes/default/mobile/item.php
- Timestamp:
- 06/19/07 13:04:29 (18 months ago)
- Files:
-
- 1 modified
-
trunk/gregarius/themes/default/mobile/item.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/themes/default/mobile/item.php
r1618 r1737 27 27 <?php if(!hidePrivate()) { ?> 28 28 <div class="mobileform"> 29 <label for="it_<? = rss_item_id(); ?>">State:</label>30 <select id="it_<? = rss_item_id(); ?>" name="<?= rss_item_id(); ?>">29 <label for="it_<?php print(rss_item_id()); ?>">State:</label> 30 <select id="it_<?php print(rss_item_id()); ?>" name="<?php print(rss_item_id()); ?>"> 31 31 <option value="mobile_read" <?php 32 32 if(!$GLOBALS['rss'] -> currentItem -> isSticky ) { 33 33 echo "selected=\"selected\""; 34 } ?>><? = __('Read'); ?></option>35 <option value="mobile_unread"><? = __('Unread'); ?></option>34 } ?>><?php print(__('Read')); ?></option> 35 <option value="mobile_unread"><?php print(__('Unread')); ?></option> 36 36 <option value="mobile_sticky" <?php 37 37 if( $GLOBALS['rss'] -> currentItem -> isSticky ) { 38 38 echo "selected=\"selected\""; 39 39 } 40 ?>><? = __('Sticky'); ?></option>40 ?>><?php print(__('Sticky')); ?></option> 41 41 </select> 42 42 </div>
