Skip to:
Content

BuddyPress.org

Opened 15 years ago

Closed 15 years ago

#2223 closed defect (bug) (no action required)

Pagination: class "no-ajax" is missing

Reported by: nickrita's profile NickRita Owned by:
Milestone: 1.2.3 Priority: major
Severity: Version:
Component: Activity Keywords: Pagination
Cc:

Description

In activity-loop.php there is the pagination code, tagged in noscript. Using the pagination it shows the links, but the links don't work. This is because the no-ajax class is missing.

activity-loop code snippet now:

<noscript>

<div class="pagination">

<div class="pag-count"><?php bp_activity_pagination_count() ?></div>
<div class="pagination-links"><?php bp_activity_pagination_links() ?></div>

</div>

</noscript>

activity-loop code snippet should be:

<noscript>
<div class="pagination">
<div class="no-ajax"><div class="pag-count"><?php bp_activity_pagination_count() ?></div>

<div class="pagination-links"><?php bp_activity_pagination_links() ?></div>

</div></div>

</noscript>

Change History (1)

#1 @apeatling
15 years ago

  • Resolution set to invalid
  • Status changed from new to closed

The pagination links are for noscript only, so this doesn't matter.

Note: See TracTickets for help on using tickets.