Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/12/2012 08:09:34 PM (13 years ago)
Author:
johnjamesjacoby
Message:

Add ending semicolons to bp-default where omitted. Fixes #4002.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/groups/create.php

    r5549 r5737  
    4242                    <input type="text" name="group-name" id="group-name" aria-required="true" value="<?php bp_new_group_name(); ?>" />
    4343
    44                     <label for="group-desc"><?php _e( 'Group Description (required)', 'buddypress' ) ?></label>
     44                    <label for="group-desc"><?php _e( 'Group Description (required)', 'buddypress' ); ?></label>
    4545                    <textarea name="group-desc" id="group-desc" aria-required="true"><?php bp_new_group_description(); ?></textarea>
    4646
     
    113113                    <h4><?php _e( 'Group Invitations', 'buddypress' ); ?></h4>
    114114
    115                     <p><?php _e( 'Which members of this group are allowed to invite others?', 'buddypress' ) ?></p>
     115                    <p><?php _e( 'Which members of this group are allowed to invite others?', 'buddypress' ); ?></p>
    116116
    117117                    <div class="radio">
    118118                        <label>
    119                             <input type="radio" name="group-invite-status" value="members"<?php bp_group_show_invite_status_setting( 'members' ) ?> />
    120                             <strong><?php _e( 'All group members', 'buddypress' ) ?></strong>
     119                            <input type="radio" name="group-invite-status" value="members"<?php bp_group_show_invite_status_setting( 'members' ); ?> />
     120                            <strong><?php _e( 'All group members', 'buddypress' ); ?></strong>
    121121                        </label>
    122122
    123123                        <label>
    124                             <input type="radio" name="group-invite-status" value="mods"<?php bp_group_show_invite_status_setting( 'mods' ) ?> />
    125                             <strong><?php _e( 'Group admins and mods only', 'buddypress' ) ?></strong>
     124                            <input type="radio" name="group-invite-status" value="mods"<?php bp_group_show_invite_status_setting( 'mods' ); ?> />
     125                            <strong><?php _e( 'Group admins and mods only', 'buddypress' ); ?></strong>
    126126                        </label>
    127127
    128128                        <label>
    129                             <input type="radio" name="group-invite-status" value="admins"<?php bp_group_show_invite_status_setting( 'admins' ) ?> />
    130                             <strong><?php _e( 'Group admins only', 'buddypress' ) ?></strong>
     129                            <input type="radio" name="group-invite-status" value="admins"<?php bp_group_show_invite_status_setting( 'admins' ); ?> />
     130                            <strong><?php _e( 'Group admins only', 'buddypress' ); ?></strong>
    131131                        </label>
    132132                    </div>
Note: See TracChangeset for help on using the changeset viewer.