Skip to content

Commit

Permalink
unexpected '||' syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
RavanH committed Jul 5, 2016
1 parent 37a46ba commit 17c2d73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/feed-sitemap-post_type.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

// check if page is in the exclusion list (like front page or post meta)
// or if we are not dealing with an external URL :: Thanks to Francois Deschenes :)
if ( $xmlsf->is_excluded($post->ID)) || !$xmlsf->is_allowed_domain(get_permalink()) )
if ( $xmlsf->is_excluded($post->ID) || !$xmlsf->is_allowed_domain(get_permalink()) )
continue;

$have_posts = true;
Expand Down

0 comments on commit 17c2d73

Please sign in to comment.