Make WordPress Core


Ignore:
Timestamp:
01/07/2010 12:30:53 AM (15 years ago)
Author:
ryan
Message:

s/wpmu/ms/ in file refs. Props Denis-de-Bernardy. see #11644

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/ms-sites.php

    r12620 r12622  
    66
    77$title = __('WordPress MU › Admin › Blogs');
    8 $parent_file = 'wpmu-admin.php';
     8$parent_file = 'ms-admin.php';
    99
    1010wp_enqueue_script( 'admin-forms' );
     
    370370        <h2><?php _e('Blogs') ?></h2>
    371371
    372         <form action="wpmu-blogs.php" method="get" id="wpmu-search">
     372        <form action="ms-blogs.php" method="get" id="ms-search">
    373373            <input type="hidden" name="action" value="blogs" />
    374374            <input type="text" name="s" value="<?php if (isset($_GET['s'])) echo stripslashes( esc_attr( $s, 1 ) ); ?>" size="17" />
     
    395395
    396396        <?php if( isset($_GET['s']) && !empty($_GET['s']) ) : ?>
    397             <p><a href="wpmu-users.php?action=users&s=<?php echo urlencode( stripslashes( $s ) ) ?>"><?php _e('Search Users:') ?> <strong><?php echo stripslashes( $s ); ?></strong></a></p>
     397            <p><a href="ms-users.php?action=users&s=<?php echo urlencode( stripslashes( $s ) ) ?>"><?php _e('Search Users:') ?> <strong><?php echo stripslashes( $s ); ?></strong></a></p>
    398398        <?php endif; ?>
    399399
     
    427427                <th scope="col" class="check-column"></th>
    428428                <?php foreach($posts_columns as $column_id => $column_display_name) {
    429                     $column_link = "<a href='wpmu-blogs.php?{$sortby_url}&amp;sortby={$column_id}&amp;";
     429                    $column_link = "<a href='ms-blogs.php?{$sortby_url}&amp;sortby={$column_id}&amp;";
    430430                    if( $_GET['sortby'] == $column_id ) {
    431431                        $column_link .= $_GET[ 'order' ] == 'DESC' ? 'order=ASC&amp;' : 'order=DESC&amp;';
     
    471471                            case 'blogname': ?>
    472472                                <td valign="top">
    473                                     <a href="wpmu-blogs.php?action=editblog&amp;id=<?php echo $blog['blog_id'] ?>" class="edit"><?php echo $blogname; ?></a>
     473                                    <a href="ms-blogs.php?action=editblog&amp;id=<?php echo $blog['blog_id'] ?>" class="edit"><?php echo $blogname; ?></a>
    474474                                    <br/>
    475475                                    <?php
    476476                                    $controlActions = array();
    477                                     $controlActions[]   = '<a href="wpmu-blogs.php?action=editblog&amp;id=' . $blog['blog_id'] . '" class="edit">' . __('Edit') . '</a>';
     477                                    $controlActions[]   = '<a href="ms-blogs.php?action=editblog&amp;id=' . $blog['blog_id'] . '" class="edit">' . __('Edit') . '</a>';
    478478                                    $controlActions[]   = "<a href='{$protocol}{$blog['domain']}{$blog['path']}wp-admin/' class='edit'>" . __('Backend') . '</a>';
    479479                                   
Note: See TracChangeset for help on using the changeset viewer.