Skip to content

Commit

Permalink
Fixing tiny problem with latest feedback widget (missing 'class="' fo…
Browse files Browse the repository at this point in the history
…r the "feedback-author" div)
  • Loading branch information
acusti committed Feb 10, 2011
1 parent 0756c3f commit 47df3c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pp-feedback/pp-feedback-templatetags.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function the_most_recent_feedback( $user_id = '' ){

if( $latest !== NULL ) {
echo '<blockquote class="feedback-comment">' . $latest->post_content . '</blockquote>';
echo '<div "feedback-author">';
echo '<div class="feedback-author">';
printf( __( 'From: %s', 'prospress' ), get_userdata( $latest->post_author )->display_name );
echo '</div>';
} else {
Expand Down

1 comment on commit 47df3c1

@acusti
Copy link
Owner Author

@acusti acusti commented on 47df3c1 Feb 10, 2011

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, I was in a rush; I meant that I fixed a typo in the the_most_recent_feedback() template tag function

Please sign in to comment.