Changeset 4657
- Timestamp:
- 12/25/2012 08:23:42 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
includes/replies/functions.php (modified) (2 diffs)
-
includes/topics/functions.php (modified) (1 diff)
-
templates/default/css/bbpress-rtl.css (modified) (2 diffs)
-
templates/default/css/bbpress.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/replies/functions.php
r4655 r4657 554 554 // Toggle revisions back on 555 555 if ( true === $revisions_removed ) { 556 $revisions_removed = true;556 $revisions_removed = false; 557 557 add_post_type_support( bbp_get_reply_post_type(), 'revisions' ); 558 558 } … … 579 579 // Update revision log 580 580 if ( !empty( $_POST['bbp_log_reply_edit'] ) && ( 1 == $_POST['bbp_log_reply_edit'] ) ) { 581 $revision_id = wp_ is_post_revision( $reply_id );581 $revision_id = wp_save_post_revision( $reply_id ); 582 582 if ( !empty( $revision_id ) ) { 583 583 bbp_update_reply_revision_log( array( -
trunk/includes/topics/functions.php
r4655 r4657 614 614 // Toggle revisions back on 615 615 if ( true === $revisions_removed ) { 616 $revisions_removed = true;616 $revisions_removed = false; 617 617 add_post_type_support( bbp_get_topic_post_type(), 'revisions' ); 618 618 } -
trunk/templates/default/css/bbpress-rtl.css
r4646 r4657 826 826 /* =Revisions 827 827 -------------------------------------------------------------- */ 828 #bbpress-forums .bbp-topic-revision-log, 829 #bbpress-forums .bbp-reply-revision-log { 828 829 #bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log, 830 #bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log, 831 #bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log { 830 832 border-top: 1px dotted #ddd; 831 list-style: none;832 833 width: 100%; 833 834 margin: 0; … … 835 836 font-size: 11px; 836 837 color: #aaa; 838 } 839 840 #bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log li, 841 #bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log li, 842 #bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log li { 843 list-style-type: none; 837 844 } 838 845 -
trunk/templates/default/css/bbpress.css
r4646 r4657 828 828 /* =Revisions 829 829 -------------------------------------------------------------- */ 830 #bbpress-forums .bbp-topic-revision-log, 831 #bbpress-forums .bbp-reply-revision-log { 830 831 #bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log, 832 #bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log, 833 #bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log { 832 834 border-top: 1px dotted #ddd; 833 list-style: none;834 835 width: 100%; 835 836 margin: 0; … … 837 838 font-size: 11px; 838 839 color: #aaa; 840 } 841 842 #bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log li, 843 #bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log li, 844 #bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log li { 845 list-style-type: none; 839 846 } 840 847
Note: See TracChangeset
for help on using the changeset viewer.