Changeset 8465
- Timestamp:
- 07/26/08 20:17:12 (3 months ago)
- Files:
-
- branches/crazyhorse/wp-admin/inbox.php (modified) (2 diffs)
- branches/crazyhorse/wp-admin/includes/dashboard.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/crazyhorse/wp-admin/inbox.php
r8443 r8465 6 6 7 7 require_once('admin-header.php'); 8 9 if ( !empty($_GET['doaction']) ) : 10 11 ?> 12 13 <div class="updated"> 14 <p>This feature isn't enabled in this prototype.</p> 15 </div> 16 17 <?php 18 19 endif; 8 20 9 21 ?> … … 49 61 echo '</a>'; 50 62 ?></td> 51 <td><a href="#link-to-comment" ><abbr title="<?php echo "$item->date at $item->time"; ?>"><?php echo $item->date; ?></abbr></a></td>63 <td><a href="#link-to-comment" class="no-crazy"><abbr title="<?php echo "$item->date at $item->time"; ?>"><?php echo $item->date; ?></abbr></a></td> 52 64 <td><?php 53 65 echo $item->from; 54 66 if ( 'comment' == $item->type ) // crazyhorse 55 echo "<br/>on "<a href='#' >{$crazy_posts[$item->parent]}</a>"";67 echo "<br/>on "<a href='#' class='no-crazy'>{$crazy_posts[$item->parent]}</a>""; 56 68 ?></td> 57 69 </tr> branches/crazyhorse/wp-admin/includes/dashboard.php
r8448 r8465 461 461 $('.inbox-count').text( $('#inbox-filter li:visible').size().toString() ); 462 462 $('#inbox-message').addClass('updated'); 463 $('#inbox-message').text(done+txt );463 $('#inbox-message').text(done+txt+" (This feature isn't enabled in this prototype)"); 464 464 } ); 465 465 } ); … … 490 490 echo $item->from; 491 491 if ( 'comment' == $item->type ) // crazyhorse 492 echo " on "<a href='#' >{$crazy_posts[$item->parent]}</a>"";492 echo " on "<a href='#' class='no-crazy'>{$crazy_posts[$item->parent]}</a>""; 493 493 ?></cite>, <?php echo "$item->date, $item->time"; ?> 494 494 </p>
