Make WordPress Core


Ignore:
Timestamp:
11/19/2006 07:56:05 AM (19 years ago)
Author:
ryan
Message:

Remove trailing spaces and convert spaces to tabs. Props Nazgul. fixes #986

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/user-edit.php

    r4480 r4495  
    187187
    188188<br clear="all" />
    189   <table width="99%"  border="0" cellspacing="2" cellpadding="3" class="editform">
    190     <?php
    191     if(count($profileuser->caps) > count($profileuser->roles)):
    192     ?>
    193     <tr>
    194       <th scope="row"><?php _e('Additional Capabilities:') ?></th>
    195       <td><?php
     189    <table width="99%"  border="0" cellspacing="2" cellpadding="3" class="editform">
     190        <?php
     191        if(count($profileuser->caps) > count($profileuser->roles)):
     192        ?>
     193        <tr>
     194            <th scope="row"><?php _e('Additional Capabilities:') ?></th>
     195            <td><?php
    196196            $output = '';
    197197            foreach($profileuser->caps as $cap => $value) {
     
    203203            echo $output;
    204204            ?></td>
    205     </tr>
    206     <?php
    207     endif;
    208     ?>
    209   </table>
     205        </tr>
     206        <?php
     207        endif;
     208        ?>
     209    </table>
    210210<p class="submit">
    211211    <input type="hidden" name="action" value="update" />
    212212    <input type="hidden" name="user_id" id="user_id" value="<?php echo $user_id; ?>" />
    213     <input type="submit" value="<?php _e('Update User &raquo;') ?>" name="submit" />
     213    <input type="submit" value="<?php _e('Update User &raquo;') ?>" name="submit" />
    214214 </p>
    215215</form>
Note: See TracChangeset for help on using the changeset viewer.