Changeset 9533
- Timestamp:
- 11/05/2008 08:30:26 PM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
-
edit-link-categories.php (modified) (1 diff)
-
edit.php (modified) (2 diffs)
-
link-manager.php (modified) (2 diffs)
-
upload.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-categories.php
r9526 r9533 63 63 <?php screen_options('link-category') ?> 64 64 65 <div class="wrap nosubsub"> 66 <h2><?php echo wp_specialchars( $title ); ?></h2> 67 65 68 <?php if ( isset($_GET['message']) && ( $msg = (int) $_GET['message'] ) ) : ?> 66 69 <div id="message" class="updated fade"><p><?php echo $messages[$msg]; ?></p></div> 67 70 <?php $_SERVER['REQUEST_URI'] = remove_query_arg(array('message'), $_SERVER['REQUEST_URI']); 68 71 endif; ?> 69 70 <div class="wrap nosubsub">71 <h2><?php echo wp_specialchars( $title ); ?></h2>72 72 73 73 <form class="search-form" action="" method="get"> -
trunk/wp-admin/edit.php
r9414 r9533 93 93 <?php screen_options('post') ?> 94 94 95 <div class="wrap"> 96 <h2><?php echo wp_specialchars( $title ); ?></h2> 97 95 98 <?php 96 99 if ( isset($_GET['posted']) && $_GET['posted'] ) : $_GET['posted'] = (int) $_GET['posted']; ?> … … 115 118 </p></div> 116 119 <?php } ?> 117 118 <div class="wrap">119 <h2><?php echo wp_specialchars( $title ); ?></h2>120 120 121 121 <form id="posts-filter" action="" method="get"> -
trunk/wp-admin/link-manager.php
r9363 r9533 77 77 <?php screen_options('link') ?> 78 78 79 <div class="wrap nosubsub"> 80 <h2><?php echo wp_specialchars( $title ); ?></h2> 81 79 82 <?php 80 83 if ( isset($_GET['deleted']) ) { … … 86 89 } 87 90 ?> 88 89 <div class="wrap nosubsub">90 <h2><?php echo wp_specialchars( $title ); ?></h2>91 91 92 92 <form class="search-form" action="" method="get"> -
trunk/wp-admin/upload.php
r9506 r9533 164 164 $messages[3] = __('Error saving media attachment.'); 165 165 166 if ( isset($_GET['message']) && (int) $_GET['message'] ) 166 if ( isset($_GET['message']) && (int) $_GET['message'] ) { 167 167 $message = $messages[$_GET['message']]; 168 168 $_SERVER['REQUEST_URI'] = remove_query_arg(array('message'), $_SERVER['REQUEST_URI']); 169 } 170 ?> 171 172 <?php do_action('restrict_manage_posts'); ?> 173 174 <div class="wrap"> 175 <h2><?php echo wp_specialchars( $title ); ?></h2> 176 177 <?php 169 178 if ( isset($message) ) { ?> 170 179 <div id="message" class="updated fade"><p><?php echo $message; ?></p></div> 171 <?php $_SERVER['REQUEST_URI'] = remove_query_arg(array('message'), $_SERVER['REQUEST_URI']); 172 } 173 ?> 174 175 <?php do_action('restrict_manage_posts'); ?> 176 177 <div class="wrap"> 178 <h2><?php echo wp_specialchars( $title ); ?></h2> 180 <?php 181 } 182 ?> 179 183 180 184 <ul class="subsubsub">
Note: See TracChangeset
for help on using the changeset viewer.