Opened 2 years ago
Last modified 2 years ago
#7691 new defect (bug)
Strict comparison operator missing with post get_post_type() check
| Reported by: | deepakrohilla | Owned by: | |
|---|---|---|---|
| Priority: | lowest | Milestone: | |
| Component: | Jobs (jobs.wordpress.net) | Keywords: | has-patch |
| Cc: |
Description
Strict check missing in post type check in jobswp theme.
it should be <?php if ( 'post' === get_post_type() ) : ?> but currently it is <?php if ( 'post' == get_post_type() ) : ?>
Attachments (1)
Change History (3)
This ticket was mentioned in PR #339 on WordPress/wordpress.org by @deepakrohilla.
2 years ago
#1
- Keywords has-patch added
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Strict checks are not always required, loose comparisons are often better in non-security scenarios. Marking as low-priority.