Opened 9 years ago
Closed 9 years ago
#35518 closed defect (bug) (fixed)
Dashboard page: No "view" link for approved comment
Reported by: | antonrinas | Owned by: | wonderboymusic |
---|---|---|---|
Milestone: | 4.6 | Priority: | normal |
Severity: | trivial | Version: | 4.4.1 |
Component: | Comments | Keywords: | needs-patch |
Focuses: | ui, javascript, administration | Cc: |
Description
STEPS TO REPRODUCE:
Log in as administrator, create new post, log out,
log in as subscriber user, create new comment for created post, log out,
log in as administrator, make reply for unapproved subscriber comment on Dashboard page using hidden menu item "Reply".
EXPECTED RESULT: subscriber's comment became approved, link "View" is showed up if to hover this comment.
ACTUAL RESULT: subscriber's comment became approved, link "View" is absent if to hover this comment (see attachment).
Attachments (1)
Change History (8)
#3
in reply to:
↑ description
@
9 years ago
And one more detail:
if to perform all steps from STEPS TO REPRODUCE group box "At a Glance" doesn't show total comments counter.
#4
@
9 years ago
- Focuses javascript added
Currently, the "View" action link gets printed out only for approved comments (approved at page load), see in _wp_dashboard_recent_comments_row()
if ( '1' === $comment->comment_approved ) { $actions['view'] = '<a class="comment-link" href=" ... }
it should probably be always printed out and then dynamically displayed/hidden.
Dashboard screenshot