- Timestamp:
- 10/25/2022 07:33:13 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/classes/class-bp-activity-activity.php
r13337 r13344 1923 1923 * @type int $offset Return only those items with an ID greater 1924 1924 * than the offset value. 1925 * @type int $offset_lower Return only those items with an ID lower 1926 * than the offset value. 1925 1927 * @type string $since Return only those items that have a 1926 1928 * date_recorded value greater than a … … 1966 1968 $sid_sql = absint( $filter_array['offset'] ); 1967 1969 $filter_sql[] = "a.id >= {$sid_sql}"; 1970 } 1971 1972 if ( ! empty( $filter_array['offset_lower'] ) ) { 1973 $sid_sql = absint( $filter_array['offset_lower'] ); 1974 $filter_sql[] = "a.id < {$sid_sql}"; 1968 1975 } 1969 1976
Note: See TracChangeset
for help on using the changeset viewer.