Child Themify - Version 1.0.1

Version Description

  • Add a semicolon to the end of the @import line in the stylesheet. Props to Luis Alejandre (wpthemedetector.com) for finding and solving.
Download this release

Release Info

Developer JohnPBloch
Plugin Icon wp plugin Child Themify
Version 1.0.1
Comparing to
See all releases

Code changes from version 1.0 to 1.0.1

Files changed (2) hide show
  1. child-themify.php +2 -2
  2. readme.txt +6 -3
child-themify.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * Plugin Name: Child Themify
4
  * Description: Enables the quick creation of child themes from any non-child theme you have installed.
5
- * Version: 1.0
6
  * Plugin URI: https://github.com/johnpbloch/child-themify
7
  * Author: John P. Bloch
8
  * License: GPLv2 or later
@@ -142,7 +142,7 @@ Description: A child theme of $oldName
142
  Template: $oldStylesheet
143
  */
144
 
145
- @import url("../$oldStylesheet/style.css")
146
 
147
  EOF;
148
  $wp_filesystem->put_contents( $newStylesheet, $stylesheetContents );
2
  /*
3
  * Plugin Name: Child Themify
4
  * Description: Enables the quick creation of child themes from any non-child theme you have installed.
5
+ * Version: 1.0.1
6
  * Plugin URI: https://github.com/johnpbloch/child-themify
7
  * Author: John P. Bloch
8
  * License: GPLv2 or later
142
  Template: $oldStylesheet
143
  */
144
 
145
+ @import url("../$oldStylesheet/style.css");
146
 
147
  EOF;
148
  $wp_filesystem->put_contents( $newStylesheet, $stylesheetContents );
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: JohnPBloch
3
  Tags: themes, child, theme
4
  Requires at least: 3.4.2
5
  Tested up to: 3.5
6
- Stable tag: 1.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -32,10 +32,13 @@ None yet.
32
 
33
  == Changelog ==
34
 
 
 
 
35
  = 1.0 =
36
  * Initial Release
37
 
38
  == Upgrade Notice ==
39
 
40
- = 1.0 =
41
- How are you seeing this?
3
  Tags: themes, child, theme
4
  Requires at least: 3.4.2
5
  Tested up to: 3.5
6
+ Stable tag: 1.0.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
32
 
33
  == Changelog ==
34
 
35
+ = 1.0.1 =
36
+ * Add a semicolon to the end of the @import line in the stylesheet. Props to Luis Alejandre (wpthemedetector.com) for finding and solving.
37
+
38
  = 1.0 =
39
  * Initial Release
40
 
41
  == Upgrade Notice ==
42
 
43
+ = 1.0.1 =
44
+ This version fixes a bug that will prevent some users' css from taking effect in new child themes.