Opened 3 months ago
Last modified 3 months ago
#7691 new defect (bug)
Strict comparison operator missing with post get_post_type() check
Reported by: | deepakrohilla | Owned by: | |
---|---|---|---|
Milestone: | Priority: | lowest | |
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.
3 months ago
#1
- Keywords has-patch added
Note: See
TracTickets for help on using
tickets.
Strict checks are not always required, loose comparisons are often better in non-security scenarios. Marking as low-priority.