Changeset 12725
- Timestamp:
- 01/14/2010 07:42:55 PM (15 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/ms-admin.php
r12646 r12725 33 33 34 34 <ul class="subsubsub"> 35 <li><a href="ms- blogs.php#form-add-blog" class="rbutton"><strong><?php _e('Create a New Blog'); ?></strong></a> | </li>35 <li><a href="ms-sites.php#form-add-blog" class="rbutton"><strong><?php _e('Create a New Blog'); ?></strong></a> | </li> 36 36 <li><a href="ms-users.php#form-add-user" class="rbutton"><?php _e('Create a New User'); ?></a></li> 37 37 </ul> … … 49 49 </form> 50 50 51 <form name="searchform" action="ms- blogs.php" method="get">51 <form name="searchform" action="ms-sites.php" method="get"> 52 52 <p> 53 53 <input type="hidden" name="action" value="blogs" /> -
trunk/wp-admin/ms-edit.php
r12674 r12725 186 186 check_admin_referer('editblog'); 187 187 if( empty( $_POST ) ) 188 wp_die( __('You probably need to go back to the <a href="ms- blogs.php">blogs page</a>') );188 wp_die( __('You probably need to go back to the <a href="ms-sites.php">sites page</a>') ); 189 189 190 190 // themes … … 295 295 do_action( 'wpmu_update_blog_options' ); 296 296 restore_current_blog(); 297 wpmu_admin_do_redirect( "ms- blogs.php?action=editblog&updated=true&id=".$id );297 wpmu_admin_do_redirect( "ms-sites.php?action=editblog&updated=true&id=".$id ); 298 298 break; 299 299 -
trunk/wp-admin/ms-sites.php
r12681 r12725 146 146 147 147 <div id="blogedit_blogoptions" class="postbox " > 148 <h3 class='hndle'><span><?php printf( __('Blog options (%s _options)'), $blog_prefix ); ?></span></h3>148 <h3 class='hndle'><span><?php printf( __('Blog options (%soptions)'), $blog_prefix ); ?></span></h3> 149 149 <div class="inside"> 150 150 <table class="form-table"> … … 372 372 <h2><?php _e('Blogs') ?></h2> 373 373 374 <form action="ms- blogs.php" method="get" id="ms-search">374 <form action="ms-sites.php" method="get" id="ms-search"> 375 375 <input type="hidden" name="action" value="blogs" /> 376 376 <input type="text" name="s" value="<?php if (isset($_GET['s'])) echo stripslashes( esc_attr( $s, 1 ) ); ?>" size="17" /> … … 429 429 <th scope="col" class="check-column"></th> 430 430 <?php foreach($posts_columns as $column_id => $column_display_name) { 431 $column_link = "<a href='ms- blogs.php?{$sortby_url}&sortby={$column_id}&";431 $column_link = "<a href='ms-sites.php?{$sortby_url}&sortby={$column_id}&"; 432 432 if( $_GET['sortby'] == $column_id ) { 433 433 $column_link .= $_GET[ 'order' ] == 'DESC' ? 'order=ASC&' : 'order=DESC&'; … … 473 473 case 'blogname': ?> 474 474 <td valign="top"> 475 <a href="ms- blogs.php?action=editblog&id=<?php echo $blog['blog_id'] ?>" class="edit"><?php echo $blogname; ?></a>475 <a href="ms-sites.php?action=editblog&id=<?php echo $blog['blog_id'] ?>" class="edit"><?php echo $blogname; ?></a> 476 476 <br/> 477 477 <?php 478 478 $controlActions = array(); 479 $controlActions[] = '<a href="ms- blogs.php?action=editblog&id=' . $blog['blog_id'] . '" class="edit">' . __('Edit') . '</a>';479 $controlActions[] = '<a href="ms-sites.php?action=editblog&id=' . $blog['blog_id'] . '" class="edit">' . __('Edit') . '</a>'; 480 480 $controlActions[] = "<a href='{$protocol}{$blog['domain']}{$blog['path']}wp-admin/' class='edit'>" . __('Backend') . '</a>'; 481 481 -
trunk/wp-admin/ms-users.php
r12646 r12725 125 125 126 126 <?php if( isset($_GET['s']) && $_GET['s'] != '' ) : ?> 127 <p><a href="ms- blogs.php?action=blogs&s=<?php echo urlencode( stripslashes( $s ) ); ?>&blog_name=Search+blogs+by+name"><?php _e('Search Blogs for') ?> <strong><?php echo stripslashes( $s ) ?></strong></a></p>127 <p><a href="ms-sites.php?action=blogs&s=<?php echo urlencode( stripslashes( $s ) ); ?>&blog_name=Search+blogs+by+name"><?php _e('Search Blogs for') ?> <strong><?php echo stripslashes( $s ) ?></strong></a></p> 128 128 <?php endif; ?> 129 129 … … 220 220 foreach ( (array) $blogs as $key => $val ) { 221 221 $path = ($val->path == '/') ? '' : $val->path; 222 echo '<a href="ms- blogs.php?action=editblog&id=' . $val->userblog_id . '">' . str_replace( '.' . $current_site->domain, '', $val->domain . $path ) . '</a>';222 echo '<a href="ms-sites.php?action=editblog&id=' . $val->userblog_id . '">' . str_replace( '.' . $current_site->domain, '', $val->domain . $path ) . '</a>'; 223 223 echo ' <small class="row-actions">'; 224 224 225 225 // Edit 226 echo '<a href="ms- blogs.php?action=editblog&id=' . $val->userblog_id . '">' . __('Edit') . '</a> | ';226 echo '<a href="ms-sites.php?action=editblog&id=' . $val->userblog_id . '">' . __('Edit') . '</a> | '; 227 227 228 228 // View
Note: See TracChangeset
for help on using the changeset viewer.