Changes between Initial Version and Version 1 of Ticket #35382
- Timestamp:
- 01/09/2016 05:22:05 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35382
- Property Keywords needs-patch good-first-bug added
-
Property
Version
changed from
4.4.1
to2.7.1
-
Ticket #35382 – Description
initial v1 1 1 when use the id=>parent with number and fields in id=>name or and other id=>xx type. 2 2 In same case if the query return $terms array items in bigger then the number in you set with call the function. 3 It use the {{{#!php 3 It use the 4 {{{#!php 4 5 <?php 5 6 array_slice( $terms, $offset, $number ); … … 7 8 to cat the array into number you want 8 9 But this cat action will let the array id reset to 0, 1, 2 ... NOT the id of the term 9 may use the {{{#!php 10 may use the 11 {{{#!php 10 12 <?php 11 13 array_slice( $terms, $offset, $number, true );