Changeset 3720
- Timestamp:
- 01/29/2012 09:52:15 PM (14 years ago)
- Location:
- branches/plugin
- Files:
-
- 3 edited
-
bbp-includes/bbp-extend-buddypress.php (modified) (3 diffs)
-
bbp-themes/bbp-twentyten/css/bbpress-rtl.css (modified) (1 diff)
-
bbp-themes/bbp-twentyten/css/bbpress.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-includes/bbp-extend-buddypress.php
r3654 r3720 1504 1504 * @since bbPress (r3552) 1505 1505 * 1506 * @uses bbp_get_template_part()s 1507 */ 1508 function bbp_member_forums_topics_content() { 1509 ?> 1510 1511 <div id="bbpress-forums"> 1512 1513 <?php bbp_get_template_part( 'bbpress/user', 'topics-created' ); ?> 1514 1515 </div> 1516 1517 <?php 1518 } 1519 1520 /** 1521 * Get the topics replied to template part 1522 * 1523 * @since bbPress (r3552) 1524 * 1506 1525 * @uses bbp_get_template_part() 1507 1526 */ 1508 function bbp_member_forums_topics_content() { 1509 bbp_get_template_part( 'bbpress/user', 'topics-created' ); 1510 } 1511 1512 /** 1513 * Get the topics replied to template part 1527 function bbp_member_forums_replies_content() { 1528 ?> 1529 1530 <div id="bbpress-forums"> 1531 1532 <?php bbp_get_template_part( 'bbpress/user', 'topics-replied-to' ); ?> 1533 1534 </div> 1535 1536 <?php 1537 } 1538 1539 /** 1540 * Get the topics favorited template part 1514 1541 * 1515 1542 * @since bbPress (r3552) … … 1517 1544 * @uses bbp_get_template_part() 1518 1545 */ 1519 function bbp_member_forums_replies_content() { 1520 bbp_get_template_part( 'bbpress/user', 'topics-replied-to' ); 1521 } 1522 1523 /** 1524 * Get the topics favorited template part 1546 function bbp_member_forums_favorites_content() { 1547 ?> 1548 1549 <div id="bbpress-forums"> 1550 1551 <?php bbp_get_template_part( 'bbpress/user', 'favorites' ); ?> 1552 1553 </div> 1554 1555 <?php 1556 } 1557 1558 /** 1559 * Get the topics subscribed template part 1525 1560 * 1526 1561 * @since bbPress (r3552) … … 1528 1563 * @uses bbp_get_template_part() 1529 1564 */ 1530 function bbp_member_forums_favorites_content() {1531 bbp_get_template_part( 'bbpress/user', 'favorites' );1532 }1533 1534 /**1535 * Get the topics subscribed template part1536 *1537 * @since bbPress (r3552)1538 *1539 * @uses bbp_get_template_part()1540 */1541 1565 function bbp_member_forums_subscriptions_content() { 1542 bbp_get_template_part( 'bbpress/user', 'subscriptions' ); 1566 ?> 1567 1568 <div id="bbpress-forums"> 1569 1570 <?php bbp_get_template_part( 'bbpress/user', 'subscriptions' ); ?> 1571 1572 </div> 1573 1574 <?php 1543 1575 } 1544 1576 -
branches/plugin/bbp-themes/bbp-twentyten/css/bbpress-rtl.css
r3693 r3720 828 828 } 829 829 830 body.my-account #bbpress-forums, 831 body.my-account #bbp-author-subscriptions, 832 body.my-account #bbp-author-favorites, 833 body.my-account #bbp-author-topics-started { 834 border-top: none; 835 padding-top: 0; 836 margin-bottom: 0; 837 } 830 838 831 839 /* =BuddyPress Group Forums -
branches/plugin/bbp-themes/bbp-twentyten/css/bbpress.css
r3693 r3720 828 828 } 829 829 830 body.my-account #bbpress-forums, 831 body.my-account #bbp-author-subscriptions, 832 body.my-account #bbp-author-favorites, 833 body.my-account #bbp-author-topics-started { 834 border-top: none; 835 padding-top: 0; 836 margin-bottom: 0; 837 } 830 838 831 839 /* =BuddyPress Group Forums
Note: See TracChangeset
for help on using the changeset viewer.