Ticket #7271: 7271.patch
File 7271.patch, 4.9 KB (added by , 7 years ago) |
---|
-
src/bp-blogs/bp-blogs-template.php
1111 1111 echo '<input name="blog_title" type="text" id="blog_title" value="'.esc_html($blog_title, 1).'" /></p>'; 1112 1112 ?> 1113 1113 1114 <p> 1115 <label for="blog_public_on"><?php _e('Privacy:', 'buddypress') ?></label> 1116 <?php _e( 'I would like my site to appear in search engines, and in public listings around this network.', 'buddypress' ); ?> 1114 <fieldset class="create-site"> 1115 <legend class="label"><?php _e('Privacy: I would like my site to appear in search engines, and in public listings around this network', 'buddypress') ?></legend> 1117 1116 1118 1117 <label class="checkbox" for="blog_public_on"> 1119 1118 <input type="radio" id="blog_public_on" name="blog_public" value="1" <?php if( !isset( $_POST['blog_public'] ) || '1' == $_POST['blog_public'] ) { ?>checked="checked"<?php } ?> /> … … 1123 1122 <input type="radio" id="blog_public_off" name="blog_public" value="0" <?php if( isset( $_POST['blog_public'] ) && '0' == $_POST['blog_public'] ) { ?>checked="checked"<?php } ?> /> 1124 1123 <strong><?php _e( 'No' , 'buddypress'); ?></strong> 1125 1124 </label> 1126 </ p>1125 </fieldset> 1127 1126 1128 1127 <?php 1129 1128 -
src/bp-templates/bp-legacy/buddypress/members/register.php
294 294 do_action( 'bp_signup_blog_title_errors' ); ?> 295 295 <input type="text" name="signup_blog_title" id="signup_blog_title" value="<?php bp_signup_blog_title_value(); ?>" /> 296 296 297 <span class="label"><?php _e( 'I would like my site to appear in search engines, and in public listings around this network.', 'buddypress' ); ?></span> 298 <?php 297 <fieldset class="register-site"> 298 <legend class="label"><?php _e( 'Privacy: I would like my site to appear in search engines, and in public listings around this network.', 'buddypress' ); ?></legend> 299 <?php 299 300 300 /**301 * Fires and displays any member registration blog privacy errors.302 *303 * @since 1.1.0304 */305 do_action( 'bp_signup_blog_privacy_errors' ); ?>301 /** 302 * Fires and displays any member registration blog privacy errors. 303 * 304 * @since 1.1.0 305 */ 306 do_action( 'bp_signup_blog_privacy_errors' ); ?> 306 307 307 <label for="signup_blog_privacy_public"><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_public" value="public"<?php if ( 'public' == bp_get_signup_blog_privacy_value() || !bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes', 'buddypress' ); ?></label> 308 <label for="signup_blog_privacy_private"><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_private" value="private"<?php if ( 'private' == bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'No', 'buddypress' ); ?></label> 308 <label for="signup_blog_privacy_public"><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_public" value="public"<?php if ( 'public' == bp_get_signup_blog_privacy_value() || !bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes', 'buddypress' ); ?></label> 309 <label for="signup_blog_privacy_private"><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_private" value="private"<?php if ( 'private' == bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'No', 'buddypress' ); ?></label> 310 </fieldset> 309 311 310 312 <?php 311 313 -
src/bp-templates/bp-legacy/css/buddypress-rtl.css
863 863 opacity: .4; 864 864 } 865 865 866 fieldset.register-site { 867 margin-top: 1em; 868 } 869 870 fieldset.create-site { 871 margin-bottom: 2em; 872 } 873 874 fieldset.create-site legend { 875 margin-bottom: 1em; 876 } 877 878 fieldset.create-site label { 879 margin-left: 3em; 880 } 881 866 882 .bp-screen-reader-text { 867 883 position: absolute; 868 884 margin: -1px; -
src/bp-templates/bp-legacy/css/buddypress.css
863 863 opacity: .4; 864 864 } 865 865 866 fieldset.register-site { 867 margin-top: 1em; 868 } 869 870 fieldset.create-site { 871 margin-bottom: 2em; 872 } 873 874 fieldset.create-site legend { 875 margin-bottom: 1em; 876 } 877 878 fieldset.create-site label { 879 margin-right: 3em; 880 } 881 866 882 .bp-screen-reader-text { 867 883 position: absolute; 868 884 margin: -1px;