Changeset 6565
- Timestamp:
- 06/16/2017 05:26:24 PM (8 years ago)
- Location:
- trunk/src/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/replies/template.php
r6553 r6565 1194 1194 } 1195 1195 1196 // If nothing could be found anywhere, use Anonymous1196 // Fallback if nothing could be found 1197 1197 if ( empty( $author_name ) ) { 1198 $author_name = __( 'Anonymous', 'bbpress');1198 $author_name = bbp_get_fallback_display_name( $reply_id ); 1199 1199 } 1200 1200 -
trunk/src/includes/topics/template.php
r6551 r6565 1501 1501 } 1502 1502 1503 // If nothing could be found anywhere, use Anonymous1503 // Fallback if nothing could be found 1504 1504 if ( empty( $author_name ) ) { 1505 $author_name = __( 'Anonymous', 'bbpress');1505 $author_name = bbp_get_fallback_display_name( $topic_id ); 1506 1506 } 1507 1507
Note: See TracChangeset
for help on using the changeset viewer.