#26771 closed enhancement (wontfix)
delete death contact_forms for "msn" in \wp-includes\deprecated.php
Reported by: | Kniebremser | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.8 |
Component: | Users | Keywords: | close |
Focuses: | Cc: |
Description
Hey!
In wp-core are in the file \wp-includes\deprecated.php old unused contact_forms for "msn". "MSN" is now Windows Live or Skype.
These can be deleted or reactivated with the new service.
The most common contact_forms could also be integrated generally in the core. Currently I have many duplications, for example, for "G+", "Facebook" and "Twitter" by plugins and my theme used. These are unnecessary lines of code.
Change History (2)
Note: See
TracTickets for help on using
tickets.
Looks like you're referring to
get_the_author_msn()
and other similar functions deprecated in 2.8:tags/3.8/src/wp-includes/deprecated.php#L1533.
They're just one-line wrappers for
get_the_author_meta()
. We generally don't remove deprecated functions for backwards compatibility reasons, so we should not remove these either.Related: #11541, #23143, #24952.