Changes between Initial Version and Version 2 of Ticket #65497
- Timestamp:
- 06/20/2026 03:42:23 PM (11 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #65497
-
Property
Component
changed from
GeneraltoCustomize -
Property
Version
changed from
7.0to4.9 -
Property
Type
changed from
defect (bug)toenhancement -
Property
Summary
changed from
Unnecessary PHP comment with HTML comment in wp-admin/customize.phptoReplace unnecessary PHP comment with HTML comment in wp-admin/customize.php
-
Property
Component
changed from
-
Ticket #65497 – Description
initial v2 1 1 In `src/wp-admin/customize.php` (around line 227 and 266), there is a PHP opening tag used solely for an inline comment: 2 2 3 <ul class="customize-pane-parent"><?php // Panels and sections are managed here via JavaScript ?></ul> 3 `<ul class="customize-pane-parent"><?php // Panels and sections are managed here via JavaScript ?></ul>` 4 4 5 5 Since no PHP code is being executed, the PHP tag is unnecessary. This can be replaced with an HTML comment to improve code readability and maintainability.