Changeset 7122 for trunk/bp-themes/bp-default/registration/register.php
- Timestamp:
- 05/28/2013 03:48:47 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/registration/register.php
r6994 r7122 75 75 76 76 <label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label> 77 <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors'); ?>77 <?php do_action( bp_get_the_profile_field_errors_action() ); ?> 78 78 <input type="text" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" value="<?php bp_the_profile_field_edit_value(); ?>" /> 79 79 … … 83 83 84 84 <label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label> 85 <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors'); ?>85 <?php do_action( bp_get_the_profile_field_errors_action() ); ?> 86 86 <textarea rows="5" cols="40" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_edit_value(); ?></textarea> 87 87 … … 91 91 92 92 <label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label> 93 <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors'); ?>93 <?php do_action( bp_get_the_profile_field_errors_action() ); ?> 94 94 <select name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>"> 95 95 <?php bp_the_profile_field_options(); ?> … … 101 101 102 102 <label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label> 103 <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors'); ?>103 <?php do_action( bp_get_the_profile_field_errors_action() ); ?> 104 104 <select name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" multiple="multiple"> 105 105 <?php bp_the_profile_field_options(); ?> … … 113 113 <span class="label"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></span> 114 114 115 <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors'); ?>115 <?php do_action( bp_get_the_profile_field_errors_action() ); ?> 116 116 <?php bp_the_profile_field_options(); ?> 117 117 … … 128 128 <span class="label"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></span> 129 129 130 <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors'); ?>130 <?php do_action( bp_get_the_profile_field_errors_action() ); ?> 131 131 <?php bp_the_profile_field_options(); ?> 132 132 </div> … … 138 138 <div class="datebox"> 139 139 <label for="<?php bp_the_profile_field_input_name(); ?>_day"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label> 140 <?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors'); ?>140 <?php do_action( bp_get_the_profile_field_errors_action() ); ?> 141 141 142 142 <select name="<?php bp_the_profile_field_input_name(); ?>_day" id="<?php bp_the_profile_field_input_name(); ?>_day">
Note: See TracChangeset
for help on using the changeset viewer.