Changeset 5737 for trunk/bp-themes/bp-default/groups/create.php
- Timestamp:
- 02/12/2012 08:09:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/groups/create.php
r5549 r5737 42 42 <input type="text" name="group-name" id="group-name" aria-required="true" value="<?php bp_new_group_name(); ?>" /> 43 43 44 <label for="group-desc"><?php _e( 'Group Description (required)', 'buddypress' ) ?></label>44 <label for="group-desc"><?php _e( 'Group Description (required)', 'buddypress' ); ?></label> 45 45 <textarea name="group-desc" id="group-desc" aria-required="true"><?php bp_new_group_description(); ?></textarea> 46 46 … … 113 113 <h4><?php _e( 'Group Invitations', 'buddypress' ); ?></h4> 114 114 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> 116 116 117 117 <div class="radio"> 118 118 <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> 121 121 </label> 122 122 123 123 <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> 126 126 </label> 127 127 128 128 <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> 131 131 </label> 132 132 </div>
Note: See TracChangeset
for help on using the changeset viewer.