Changeset 1737
- Timestamp:
- 06/19/07 13:04:29 (16 months ago)
- Location:
- trunk/gregarius/themes/default/mobile
- Files:
-
- 3 modified
-
item.php (modified) (1 diff)
-
itemlist.php (modified) (1 diff)
-
navitem.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> -
trunk/gregarius/themes/default/mobile/itemlist.php
r1624 r1737 4 4 <p>(<a href="<?php echo getPath(); ?>?mobilelogin&media=mobile">Login</a> to mark items read)</p> 5 5 <?php } ?> 6 <form method="post" action="<? = getPath(); ?>">6 <form method="post" action="<?php print(getPath()); ?>"> 7 7 <?php } rss_itemlist_feeds(); ?> 8 8 <?php if( !isMobileDevice() ) { ?> -
trunk/gregarius/themes/default/mobile/navitem.php
r1615 r1737 5 5 $ak = ++$GLOBALS['__ak__']; 6 6 ?> 7 <p><span>[<? = $ak; ?>] </span><a accesskey="<?= $ak; ?>" href="<?php echo rss_nav_item_href(); ?>"><?php echo rss_nav_item_label(); ?></a></p>7 <p><span>[<?php print($ak); ?>] </span><a accesskey="<?php print($ak); ?>" href="<?php echo rss_nav_item_href(); ?>"><?php echo rss_nav_item_label(); ?></a></p>
