Changeset 6586
- Timestamp:
- 06/19/2017 06:33:55 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/common/functions.php
r6583 r6586 1005 1005 * Sends notification emails for new replies to subscribed topics 1006 1006 * 1007 * Gets new post 'sID and check if there are subscribed users to that topic, and1007 * Gets new post ID and check if there are subscribed users to that topic, and 1008 1008 * if there are, send notifications 1009 1009 * … … 1012 1012 * that limit the number of addresses in a BCC field (often to around 500.) In 1013 1013 * those cases, we recommend unhooking this function and creating your own 1014 * custom email erscript.1014 * custom email script. 1015 1015 * 1016 1016 * @since 2.6.0 bbPress (r5413) … … 1154 1154 * Sends notification emails for new topics to subscribed forums 1155 1155 * 1156 * Gets new post 'sID and check if there are subscribed users to that forum, and1156 * Gets new post ID and check if there are subscribed users to that forum, and 1157 1157 * if there are, send notifications 1158 1158 * … … 1161 1161 * that limit the number of addresses in a BCC field (often to around 500.) In 1162 1162 * those cases, we recommend unhooking this function and creating your own 1163 * custom email erscript.1163 * custom email script. 1164 1164 * 1165 1165 * @since 2.5.0 bbPress (r5156) … … 2093 2093 2094 2094 // Custom 404 handler is set, so set posts to empty array to avoid 2 queries 2095 if ( isset( $wp_query->bbp_is_404 ) ) {2095 if ( ! empty( $wp_query->bbp_is_404 ) ) { 2096 2096 $posts = array(); 2097 2097 }
Note: See TracChangeset
for help on using the changeset viewer.