Plugin Directory

Changeset 2186618


Ignore:
Timestamp:
11/06/2019 02:25:34 AM (6 years ago)
Author:
pcfreak30
Message:

*Version bump to 0.7.7

Location:
wp-criticalcss/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-criticalcss/trunk/README.txt

    r2175457 r2186618  
    6767
    6868== Changelog ==
     69
     70### 0.7.7 ###
     71
     72* Bug: Fix edge case with custom post types rewrite rules by putting them before the generic rules
    6973
    7074### 0.7.6 ###
  • wp-criticalcss/trunk/lib/WP/CriticalCSS.php

    r2175457 r2186618  
    3939     *
    4040     */
    41     const VERSION = '0.7.6';
     41    const VERSION = '0.7.7';
    4242
    4343    /**
  • wp-criticalcss/trunk/lib/WP/CriticalCSS/Request.php

    r2175457 r2186618  
    117117        }
    118118        if ( $this->wp_rewrite->use_verbose_page_rules ) {
    119             $rules = array_merge( $root_rewrite, $search_rewrite, $page_rewrite, $post_rewrite, call_user_func_array( 'array_merge', $cpt_rules ), $rules );
     119            $rules = array_merge( call_user_func_array( 'array_merge', $cpt_rules ),$root_rewrite, $search_rewrite, $page_rewrite, $post_rewrite, $rules );
    120120        } else {
    121             $rules = array_merge( $root_rewrite, $search_rewrite, $post_rewrite, $page_rewrite, call_user_func_array( 'array_merge', $cpt_rules ), $rules );
     121            $rules = array_merge( call_user_func_array( 'array_merge', $cpt_rules ), $root_rewrite, $search_rewrite, $post_rewrite, $page_rewrite, $rules );
    122122        }
    123123
  • wp-criticalcss/trunk/wp-criticalcss.php

    r2175457 r2186618  
    55Plugin URI: https://github.com/pcfreak30/wp-criticalcss
    66Description: Use CriticalCSS.com web service to automatically create the required CSS for above the fold
    7 Version: 0.7.6
     7Version: 0.7.7
    88Author: Derrick Hammer
    99Author URI: https://www.derrickhammer.com
Note: See TracChangeset for help on using the changeset viewer.