Make WordPress Core

Changes between Initial Version and Version 14 of Ticket #18210


Ignore:
Timestamp:
03/08/2024 08:18:44 PM (10 months ago)
Author:
sabernhardt
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18210

    • Property Status changed from new to closed
    • Property Focuses performance added
    • Property Cc kenton.jacobsen@… added
    • Property Component changed from General to Database
    • Property Version changed from 3.2.1 to 3.2
    • Property Milestone changed from Awaiting Review to
    • Property Keywords dev-feedback needs-patch needs-unit-tests added
    • Property Resolution changed from to worksforme
  • Ticket #18210 – Description

    initial v14  
    11In WordPress 3.3-aortic-dissection and 3.2.1
    22
    3 get_post_meta is case sensitive on the meta-key
     3`get_post_meta` is case sensitive on the meta-key
    44
    55BUT
    66
    7 update_post_meta is NOT case sensitive
     7`update_post_meta` is NOT case sensitive
    88
    99Thus 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.
     
    3939
    4040
    41 got upper: array(1) { [0]=> string(14) "tis the upper." }
     41got upper: `array(1) { [0]=> string(14) "tis the upper." }`
    4242Tried to get lower but no go
    43 Still have upper: array(1) { [0]=> string(25) "Tried to update lowercase" }
     43Still have upper: `array(1) { [0]=> string(25) "Tried to update lowercase" }`