Changeset 4562
- Timestamp:
- 12/10/2012 02:04:24 AM (12 years ago)
- Location:
- trunk/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/replies/template-tags.php
r4522 r4562 1457 1457 // If no links were passed, default to the standard 1458 1458 if ( empty( $r['links'] ) ) { 1459 $r['links'] = a rray(1459 $r['links'] = apply_filters( 'bbp_reply_admin_links', array( 1460 1460 'edit' => bbp_get_reply_edit_link ( $r ), 1461 1461 'move' => bbp_get_reply_move_link ( $r ), … … 1463 1463 'trash' => bbp_get_reply_trash_link( $r ), 1464 1464 'spam' => bbp_get_reply_spam_link ( $r ), 1465 ) ;1465 ), $r['id'] ); 1466 1466 } 1467 1467 -
trunk/includes/topics/template-tags.php
r4522 r4562 2191 2191 2192 2192 if ( empty( $r['links'] ) ) { 2193 $r['links'] = a rray(2193 $r['links'] = apply_filters( 'bbp_topic_admin_links', array( 2194 2194 'edit' => bbp_get_topic_edit_link ( $r ), 2195 2195 'close' => bbp_get_topic_close_link( $r ), … … 2198 2198 'trash' => bbp_get_topic_trash_link( $r ), 2199 2199 'spam' => bbp_get_topic_spam_link ( $r ), 2200 ) ;2200 ), $r['id'] ); 2201 2201 } 2202 2202
Note: See TracChangeset
for help on using the changeset viewer.