Skip to content

Commit

Permalink
Update WpConflictResolver.php
Browse files Browse the repository at this point in the history
  • Loading branch information
codexpert committed Nov 24, 2015
1 parent c57ee6b commit e03c0b4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/Assets/WpConflictResolver.php
Expand Up @@ -18,8 +18,10 @@ public function dequeue_default_template_stylesheet() {

global $wp_styles;


$wp_styles->remove( get_default_template_stylesheet_handle() );
if( method_exists($wp_styles, 'remove') )
{
$wp_styles->remove( get_default_template_stylesheet_handle() );
}
}

public function remove_sumome(){
Expand Down

0 comments on commit e03c0b4

Please sign in to comment.