Skip to:
Content

bbPress.org


Ignore:
Timestamp:
06/04/2012 04:37:22 AM (14 years ago)
Author:
johnjamesjacoby
Message:

Reply Position/URL:

  • Always cast the return value of bbp_get_reply_position() as an integer.
  • See #1842.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-includes/bbp-reply-template.php

    r3940 r3941  
    13221322            $reply_position++;
    13231323
    1324         return apply_filters( 'bbp_get_reply_position', (int) $reply_position, $reply_id, $topic_id );
     1324        return (int) apply_filters( 'bbp_get_reply_position', (int) $reply_position, $reply_id, $topic_id );
    13251325    }
    13261326
Note: See TracChangeset for help on using the changeset viewer.