Changeset 9709 for trunk/wp-admin/includes/dashboard.php
- Timestamp:
- 11/15/2008 07:27:48 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/dashboard.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/dashboard.php
r9699 r9709 290 290 $edit = clean_url( get_edit_post_link( $_POST['post_ID'] ) ); 291 291 if ( 'post-quickpress-publish' == $_POST['action'] ) { 292 printf( __( 'Post Published. <a href="%s">View post</a> | <a href="%s">Edit post</a>' ), clean_url( $view ), $edit );292 printf( '<div class="message"><p>' . __( 'Post Published. <a href="%s">View post</a> | <a href="%s">Edit post</a>' ) . '</p></div>', clean_url( $view ), $edit ); 293 293 } else { 294 printf( __( 'Draft Saved. <a href="%s">Preview post</a> | <a href="%s">Edit post</a>' ), clean_url( add_query_arg( 'preview', 1, $view ) ), $edit );294 printf( '<div class="message"><p>' . __( 'Draft Saved. <a href="%s">Preview post</a> | <a href="%s">Edit post</a>' ) . '</p></div>', clean_url( add_query_arg( 'preview', 1, $view ) ), $edit ); 295 295 $drafts_query = new WP_Query( array( 296 296 'post_type' => 'post',
Note: See TracChangeset
for help on using the changeset viewer.