Changeset 10267
- Timestamp:
- 10/13/2015 06:35:16 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/admin/bp-core-admin-functions.php
r10229 r10267 571 571 572 572 case 'bp-profile-overview' : 573 $retval = __( 'Your users will distinguish themselves through their profile page. Create relevant profile fields that will show on each users profile. <br /><br />Note: Any fields in the first group will appear on the signup page.', 'buddypress' );573 $retval = __( 'Your users will distinguish themselves through their profile page. Create relevant profile fields that will show on each users profile.', 'buddypress' ) . '<br /><br />' . __( 'Note: Any fields in the first group will appear on the signup page.', 'buddypress' ); 574 574 break; 575 575 -
trunk/src/bp-forums/deprecated/1.6.php
r10229 r10267 166 166 switch ( $result ) { 167 167 case 1: 168 _e( '<p>All done! Configuration settings have been saved to the file <code>bb-config.php</code> in the root of your WordPress install.</p>', 'buddypress' ); 168 echo '<p>'; 169 _e( 'All done! Configuration settings have been saved to the file <code>bb-config.php</code> in the root of your WordPress install.', 'buddypress' ); 170 echo '</p>'; 169 171 break; 170 172 default: 171 173 // Just write the contents to screen. 172 _e( '<p>A configuration file could not be created. No problem, but you will need to save the text shown below into a file named <code>bb-config.php</code> in the root directory of your WordPress installation before you can start using the forum functionality.</p>', 'buddypress' ); ?> 173 174 echo '<p>'; 175 _e( 'A configuration file could not be created. No problem, but you will need to save the text shown below into a file named <code>bb-config.php</code> in the root directory of your WordPress installation before you can start using the forum functionality.', 'buddypress' ); 176 echo '</p>'; 177 ?> 174 178 <textarea style="display:block; margin-top: 30px; width: 80%;" rows="50"><?php echo esc_textarea( $result ); ?></textarea> 175 176 <?php 179 <?php 177 180 break; 178 181 }
Note: See TracChangeset
for help on using the changeset viewer.