Changeset 1494
- Timestamp:
- 07/28/2004 07:18:59 AM (22 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 5 edited
-
categories.php (modified) (2 diffs)
-
edit-comments.php (modified) (1 diff)
-
edit.php (modified) (3 diffs)
-
menu.php (modified) (1 diff)
-
moderation.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/categories.php
r1483 r1494 92 92 $cat_name = $category->cat_name; 93 93 ?> 94 94 <ul id="adminmenu2"> 95 <li><a href="edit.php"><?php _e('Posts') ?></a></li> 96 <li><a href="categories.php" class="current"><?php _e('Categories') ?></a></li> 97 <li><a href="edit-comments.php"><?php _e('Comments') ?></a></li> 98 <li class="last"><a href="moderation.php"><?php _e('Awaiting Moderation') ?></a></li> 99 </ul> 95 100 <div class="wrap"> 96 101 <h2><?php _e('Edit Category') ?></h2> … … 147 152 $messages[3] = __('Category updated.'); 148 153 ?> 154 <ul id="adminmenu2"> 155 <li><a href="edit.php"><?php _e('Posts') ?></a></li> 156 <li><a class="current"><?php _e('Categories') ?></a></li> 157 <li><a href="edit-comments.php"><?php _e('Comments') ?></a></li> 158 <li><a href="moderation.php"><?php _e('Awaiting Moderation') ?></a></li> 159 </ul> 149 160 <?php if (isset($_GET['message'])) : ?> 150 161 <div class="updated"><p><?php echo $messages[$_GET['message']]; ?></p></div> -
trunk/wp-admin/edit-comments.php
r1472 r1494 10 10 <ul id="adminmenu2"> 11 11 <li><a href="edit.php"><?php _e('Posts') ?></a></li> 12 <li><a href="edit-comments.php" class="current"><?php _e('Comments') ?></a></li> 13 <li><a href="moderation.php"><?php _e('Awaiting Moderation') ?></a></li> 12 <li><a href="categories.php"><?php _e('Categories') ?></a></li> 13 <li><a href="edit-comments.php" class="current"><?php _e('Comments') ?></a></li> 14 <li><a href="moderation.php"><?php _e('Awaiting Moderation') ?></a></li> 14 15 </ul> 15 16 <script type="text/javascript"> -
trunk/wp-admin/edit.php
r1454 r1494 8 8 <ul id="adminmenu2"> 9 9 <li><a href="edit.php" class="current"><?php _e('Posts') ?></a></li> 10 <li><a href="categories.php"><?php _e('Categories') ?></a></li> 10 11 <li><a href="edit-comments.php"><?php _e('Comments') ?></a></li> 11 <li class="last"><a href="moderation.php"><?php _e('Awaiting Moderation') ?></a></li>12 <li><a href="moderation.php"><?php _e('Awaiting Moderation') ?></a></li> 12 13 </ul> 13 14 <?php … … 85 86 <th scope="col"><?php _e('Comments') ?></th> 86 87 <th scope="col"><?php _e('Author') ?></th> 87 <th scope="col"><?php _e('Edit') ?></th> 88 <th scope="col"><?php _e('Delete') ?></th> 88 <th scope="col"></th> 89 <th scope="col"></th> 90 <th scope="col"></th> 89 91 </tr> 90 92 <?php … … 100 102 <th scope="row"><?php echo $id ?></th> 101 103 <td><?php the_time('Y-m-d \<\b\r \/\> g:i:s a'); ?></td> 102 <td> <a href="<?php the_permalink(); ?>" rel="permalink">104 <td> 103 105 <?php the_title() ?> 104 </a>105 106 <?php if ('private' == $post->post_status) _e(' - <strong>Private</strong>'); ?></td> 106 107 <td><?php the_category(','); ?></td> 107 108 <td><a href="edit.php?p=<?php echo $id ?>&c=1"> 108 <?php comments_number(__(' no comments'), __('1 comment'), __("% comments")) ?>109 <?php comments_number(__('0'), __('1'), __('%')) ?> 109 110 </a></td> 110 111 <td><?php the_author() ?></td> 112 <td><a href="<?php the_permalink(); ?>" rel="permalink" class="edit">View</a></td> 111 113 <td><?php if (($user_level > $authordata->user_level) or ($user_login == $authordata->user_login)) { echo "<a href='post.php?action=edit&post=$id' class='edit'>" . __('Edit') . "</a>"; } ?></td> 112 114 <td><?php if (($user_level > $authordata->user_level) or ($user_login == $authordata->user_login)) { echo "<a href='post.php?action=delete&post=$id' class='delete' onclick=\"return confirm('" . sprintf(__("You are about to delete this post \'%s\'\\n \'OK\' to delete, \'Cancel\' to stop."), the_title('','',0)) . "')\">" . __('Delete') . "</a>"; } ?></td> -
trunk/wp-admin/menu.php
r1470 r1494 7 7 // The minimum level the user needs to access the item: between 0 and 10 8 8 // The URL of the item's file 9 $menu[0] = array(__('Dashboard'), 0, 'index.php'); 9 10 $menu[5] = array(__('Write'), 1, 'post.php'); 10 $menu[10] = array(__('Edit'), 1, 'edit.php'); 11 $menu[15] = array(__('Categories'), 3, 'categories.php'); 11 $menu[10] = array(__('Manage'), 1, 'edit.php'); 12 12 $menu[20] = array(__('Links'), 5, 'link-manager.php'); 13 13 $menu[25] = array(__('Users'), 3, 'users.php'); -
trunk/wp-admin/moderation.php
r1429 r1494 99 99 ?> 100 100 <ul id="adminmenu2"> 101 <li><a href="edit.php"> <?php _e('Posts') ?></a></li> 102 <li><a href="edit-comments.php"> <?php _e('Comments') ?></a></li> 103 <li class="last"><a href="moderation.php" class="current"><?php _e('Awaiting Moderation') ?></a></li> 101 <li><a href="edit.php"> <?php _e('Posts') ?></a></li> 102 <li><a href="categories.php"><?php _e('Categories') ?></a></li> 103 <li><a href="edit-comments.php"> <?php _e('Comments') ?></a></li> 104 <li><a href="moderation.php" class="current"><?php _e('Awaiting Moderation') ?></a></li> 104 105 </ul> 105 106 <?php
Note: See TracChangeset
for help on using the changeset viewer.