Make WordPress Core

Opened 5 years ago

Closed 5 years ago

#52845 closed defect (bug) (fixed)

Admin template.php file javascript code enhancement

Reported by: nayanchamp7 Owned by: SergeyBiryukov
Priority: normal Milestone: 5.8
Component: Administration Version: 5.7
Severity: normal Keywords: has-patch
Cc: Focuses: javascript, coding-standards

Description

Here in wp-admin/includes/template.php file has some codes which are not standards according to WordPress core javascript coding standards. In 2118 line, there is 'typeof' condition which is not given as strict equal condition.

<script type="text/javascript">if(typeof wpOnload=="function")wpOnload();</script>

These need to be updated.

Attachments (1)

template.php.patch (1.2 KB ) - added by nayanchamp7 5 years ago.
Updated the codes and tested.

Download all attachments as: .zip

Change History (5)

@nayanchamp7
5 years ago

Updated the codes and tested.

#1 @nayanchamp7
5 years ago

  • Type enhancementdefect (bug)

#2 @SergeyBiryukov
5 years ago

  • Milestone Awaiting Review5.8
  • Owner set to SergeyBiryukov
  • Status newreviewing

#3 @SergeyBiryukov
5 years ago

Thanks for the patch!

Since the rest of this code is minified, I think we'd want to just use strict comparison and avoid adding extra spaces.

Version 0, edited 5 years ago by SergeyBiryukov (next)

#4 @SergeyBiryukov
5 years ago

  • Resolutionfixed
  • Status reviewingclosed

In 50541:

Coding Standards: Use strict comparison for JS fragment in some admin files.

Follow-up to [48083].

Props nayanchamp7, rnaby.
Fixes #52845, #41988.

Note: See TracTickets for help on using tickets.