Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/04/2009 12:29:21 AM (16 years ago)
Author:
matt
Message:

Minor cleanups, mods, and todos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-xprofile/bp-xprofile-admin.php

    r850 r1017  
    1111function xprofile_admin( $message = '', $type = 'error' ) {
    1212    global $bp;
    13    
     13
     14    $type = preg_replace( '|[^a-z]|i', '', $type );
     15
    1416    $groups = BP_XProfile_Group::get_all();
    15    
     17
    1618    if ( isset($_GET['mode']) && isset($_GET['group_id']) && $_GET['mode'] == "add_field" ) {
    1719        xprofile_admin_manage_field($_GET['group_id']);
     
    4547        ?>
    4648            <div id="message" class="<?php echo $type; ?> fade">
    47                 <p><?php echo $message; ?></p>
     49                <p><?php echo wp_specialchars( $message ); ?></p>
    4850            </div>
    4951        <?php }
     
    6365            </script>
    6466           
    65             <?php if ( function_exists('wp_nonce_field') )
    66                 wp_nonce_field('xprofile_reorder_fields');
    67            
    68             for ( $i = 0; $i < count($groups); $i++ ) {
     67            <?php
     68            wp_nonce_field('xprofile_reorder_fields');
     69           
     70            for ( $i = 0; $i < count($groups); $i++ ) { // TODO: foreach
    6971            ?>
    7072                <p>
     
    121123               
    122124        <?php } else { ?>
    123             <div id="message" class="error"><p>You have no groups.</p></div>
     125            <div id="message" class="error"><p><?php _e('You have no groups.', 'buddypress' ); ?></p></div>
    124126            <p><a href="admin.php?page=xprofile_settings&amp;mode=add_group"><?php _e( 'Add New Group', 'buddypress' ) ?></a></p>
    125127        <?php } ?>
     
    184186    }
    185187   
    186     unset($_GET['mode']);
     188    unset($_GET['mode']); // TODO: wtf?
    187189    xprofile_admin( $message, $type );
    188190}
     
    261263    xprofile_admin($message, $type);
    262264}
    263 
    264 ?>
Note: See TracChangeset for help on using the changeset viewer.