Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #52627, comment 7


Ignore:
Timestamp:
04/01/2021 03:45:02 PM (4 years ago)
Author:
davidbaumwald
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #52627, comment 7

    initial v1  
    11In [50631]:
    22
    3 Coding Standards: Removing unnecessary parentheses from require_once in wp-admin/options-privacy.php.
     3Coding Standards: Removing unnecessary parentheses from `require_once` in `wp-admin/options-privacy.php`.
    44
    5 In [47198], parentheses were removed from include and require statements, as they are language constructs, not function calls.  However, [50161] introduced a new require_once instance in wp-admin/options-privacy.php.  This change removes the unnecessary parentheses.
     5In [47198], parentheses were removed from `include` and `require` statements, as they are language constructs, not function calls.  However, [50161] introduced a new `require_once` instance in `wp-admin/options-privacy.php`.  This change removes the unnecessary parentheses.
    66
    77See #53627.