Opened 10 years ago
Last modified 8 years ago
#31600 reviewing defect (bug)
WP_Object_Cache incr & decr can use a more strict type checking on offset
Reported by: | jipmoors | Owned by: | SergeyBiryukov |
---|---|---|---|
Milestone: | Future Release | Priority: | normal |
Severity: | minor | Version: | 3.3 |
Component: | Cache API | Keywords: | has-patch |
Focuses: | Cc: |
Description
While working on improving the unit tests for related ticket #28759 I wrote some tests that could not pass on the current code: passing an non-empty array as offset.
Despite of it being an edge case, I want to have my tests pass, so I provide a patch.
Attachments (2)
Change History (7)
#4
@
10 years ago
Test increment with an array with entries.
wp_cache_set( $key, 2 );
$this->assertEquals( 2, wp_cache_incr( $key, array() ) );
Results in 3 instead of 2.
Version 0, edited 10 years ago
by
(next)
Note: See
TracTickets for help on using
tickets.
Type check on offset