Changes between Initial Version and Version 14 of Ticket #18210
- Timestamp:
- 03/08/2024 08:18:44 PM (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18210
-
Property
Status
changed from
new
toclosed
- Property Focuses performance added
- Property Cc kenton.jacobsen@… added
-
Property
Component
changed from
General
toDatabase
-
Property
Version
changed from
3.2.1
to3.2
-
Property
Milestone
changed from
Awaiting Review
to - Property Keywords dev-feedback needs-patch needs-unit-tests added
-
Property
Resolution
changed from
to
worksforme
-
Property
Status
changed from
-
Ticket #18210 – Description
initial v14 1 1 In WordPress 3.3-aortic-dissection and 3.2.1 2 2 3 get_post_metais case sensitive on the meta-key3 `get_post_meta` is case sensitive on the meta-key 4 4 5 5 BUT 6 6 7 update_post_metais NOT case sensitive7 `update_post_meta` is NOT case sensitive 8 8 9 9 Thus If there is a pre-existing meta record with a key in say UPPERCASE, then one can issue an update for a lowercase key that one can not then fetch as it does not exist - only the uppercase key exists. … … 39 39 40 40 41 got upper: array(1) { [0]=> string(14) "tis the upper." }41 got upper: `array(1) { [0]=> string(14) "tis the upper." }` 42 42 Tried to get lower but no go 43 Still have upper: array(1) { [0]=> string(25) "Tried to update lowercase" }43 Still have upper: `array(1) { [0]=> string(25) "Tried to update lowercase" }`