Plugin Directory

Changeset 1948824


Ignore:
Timestamp:
09/28/2018 08:51:18 PM (8 years ago)
Author:
paulswarthout
Message:

Found a global non-unique variable name. Changed the name to be unique with the pas_cth_ prefix.

Location:
child-themes-helper
Files:
52 added
2 edited

Legend:

Unmodified
Added
Removed
  • child-themes-helper/trunk/pasChildThemes.php

    r1947606 r1948824  
    44    Plugin URI: http://www.paulswarthout.com/Child-Themes-Helper/
    55    Description: ( 1 ) Copies files from the template theme to the child theme, perfectly duplicating the path structure. ( 2 ) Removes file from the child theme, and removes any empty folders that were made empty by the removal of the child theme file. ( 3 ) Creates new child themes from installed template themes.
    6     Version: 1.1.1
     6    Version: 1.1.2
    77    Author: Paul A. Swarthout
    88    Author URI: http://www.PaulSwarthout.com
     
    3636 *  that is returned by the wp_get_theme( ) function.
    3737 */
    38 $pluginDirectory =
     38$pas_cth_pluginDirectory =
    3939    [
    4040        'path' => plugin_dir_path( __FILE__ ),
    41         'url' => plugin_dir_url ( __FILE__ )
     41        'url' => plugin_dir_url  ( __FILE__ )
    4242    ];
    4343$pas_cth_themeInfo = new pas_cth_activeThemeInfo( );
    44 $pas_cth_library    = new pas_cth_library_functions( ['pluginDirectory' => $pluginDirectory] );
     44$pas_cth_library    = new pas_cth_library_functions( ['pluginDirectory' => $pas_cth_pluginDirectory] );
    4545
    4646$args = [
    47             'pluginDirectory'   => $pluginDirectory,
     47            'pluginDirectory'   => $pas_cth_pluginDirectory,
    4848            'pluginName'        => 'Child Themes Helper',
    4949            'pluginFolder'      => 'pasChildThemes',
  • child-themes-helper/trunk/readme.txt

    r1947599 r1948824  
    66Requires at least: 4.7.0
    77Tested up to: 4.9.8
    8 Stable tag: 1.1.1
     8Stable tag: 1.1.2
    99Requires PHP: 5.5.38
    1010License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.