Changes between Initial Version and Version 1 of Ticket #52627, comment 7
- Timestamp:
- 04/01/2021 03:45:02 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #52627, comment 7
initial v1 1 1 In [50631]: 2 2 3 Coding Standards: Removing unnecessary parentheses from require_once in wp-admin/options-privacy.php.3 Coding Standards: Removing unnecessary parentheses from `require_once` in `wp-admin/options-privacy.php`. 4 4 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.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. 6 6 7 7 See #53627.