Changeset 6044
- Timestamp:
- 05/31/2016 05:58:37 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/topics.php
r6042 r6044 1088 1088 1089 1089 // Updated 1090 1 => sprintf( __( 'Topic updated. <a href="%s">View topic</a>', 'bbpress' ), $topic_url ), 1090 1 => sprintf( 1091 '%1$s <a href="%2$s">%3$s</a>', 1092 __( 'Topic updated.', 'bbpress' ), 1093 $topic_url, 1094 __( 'View topic', 'bbpress' ) 1095 ), 1091 1096 1092 1097 // Custom field updated … … 1106 1111 1107 1112 // Topic created 1108 6 => sprintf( __( 'Topic created. <a href="%s">View topic</a>', 'bbpress' ), $topic_url ), 1113 6 => sprintf( 1114 '%1$s <a href="%2$s">%3$s</a>', 1115 __( 'Topic created.', 'bbpress' ), 1116 $topic_url, 1117 __( 'View topic', 'bbpress' ) 1118 ), 1109 1119 1110 1120 // Topic saved … … 1112 1122 1113 1123 // Topic submitted 1114 8 => sprintf( __( 'Topic submitted. <a target="_blank" href="%s">Preview topic</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $topic_url ) ) ), 1124 8 => sprintf( 1125 '%1$s <a href="%2$s" target="_blank">%3$s</a>', 1126 __( 'Topic submitted.', 'bbpress' ), 1127 esc_url( add_query_arg( 'preview', 'true', $topic_url ) ), 1128 __( 'Preview topic', 'bbpress' ) 1129 ), 1115 1130 1116 1131 // Topic scheduled … … 1127 1142 1128 1143 // Topic draft updated 1129 10 => sprintf( __( 'Topic draft updated. <a target="_blank" href="%s">Preview topic</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $topic_url ) ) ), 1144 10 => sprintf( 1145 '%1$s <a href="%2$s" target="_blank">%3$s</a>', 1146 __( 'Topic draft updated.', 'bbpress' ), 1147 esc_url( add_query_arg( 'preview', 'true', $topic_url ) ), 1148 __( 'Preview topic', 'bbpress' ) 1149 ), 1130 1150 ); 1131 1151
Note: See TracChangeset
for help on using the changeset viewer.