Changeset 7022
- Timestamp:
- 04/04/2018 12:37:31 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-ratings-compat.php
r6445 r7022 246 246 printf( 247 247 /* translators: %s: login URL */ 248 __( 'You must <a href="%s">log in or register</a> to submit a review.', 'wporg-forums' ),248 __( 'You must be <a href="%s">logged in</a> to submit a review.', 'wporg-forums' ), 249 249 add_query_arg( 250 250 'redirect_to', … … 333 333 334 334 if ( ! is_user_logged_in() ) { 335 echo '< p>';335 echo '<div class="bbp-template-notice"><p>'; 336 336 printf( 337 337 /* translators: %s: login URL */ 338 __( 'You must <a href="%s">log in or register</a> to submit a review.', 'wporg-forums' ),338 __( 'You must be <a href="%s">logged in</a> to submit a review.', 'wporg-forums' ), 339 339 add_query_arg( 340 340 'redirect_to', … … 343 343 ) 344 344 ); 345 echo '</p> ';345 echo '</p></div>'; 346 346 return; 347 347 }
Note: See TracChangeset
for help on using the changeset viewer.