Plugin Directory

Changeset 3021460


Ignore:
Timestamp:
01/14/2024 12:54:53 AM (2 years ago)
Author:
lilaeamedia
Message:

fixed deprecation errors in Packer.php and CSS.php

Location:
child-theme-configurator
Files:
5 edited
18 copied

Legend:

Unmodified
Added
Removed
  • child-theme-configurator/tags/2.6.4/child-theme-configurator.php

    r2973372 r3021460  
    77    Plugin URI: http://www.childthemeplugin.com
    88    Description: When using the Customizer is not enough - Create child themes and customize styles, templates, functions and more.
    9     Version: 2.6.3
     9    Version: 2.6.4
    1010    Author: Lilaea Media
    1111    Author URI: http://www.lilaeamedia.com
     
    1313    Domain Path: /lang
    1414    License: GPLv2
    15     Copyright (C) 2014-2018 Lilaea Media
     15    Copyright (C) 2014-2024 Lilaea Media
    1616*/
    1717// define CTC constants
  • child-theme-configurator/tags/2.6.4/includes/classes/CSS.php

    r2973372 r3021460  
    77    Plugin URI: http://www.childthemeplugin.com/
    88    Description: Handles all CSS input, output, parsing, normalization and storage
    9     Version: 2.6.3
     9    Version: 2.6.4
    1010    Author: Lilaea Media
    1111    Author URI: http://www.lilaeamedia.com/
     
    173173        $this->qpriority        = 10;
    174174        $this->mpriority        = 10;
    175         $this->version          = '2.6.3';
     175        $this->version          = '2.6.4';
    176176       
    177177        // do not set enqueue, not being set is used to flag old versions
     
    11151115     * FIXME - migrate to event parser? handle comments?
    11161116     */
    1117     function parse_css( $template, $basequery = NULL, $parse_imports = TRUE, $relpath = '', $reset = FALSE ) {
     1117    function parse_css( $template, $basequery = '', $parse_imports = TRUE, $relpath = '', $reset = FALSE ) {
    11181118        //$this->load_config( 'sel_ndx' );
    11191119        $this->load_config( 'val_ndx' );
  • child-theme-configurator/tags/2.6.4/includes/classes/Core.php

    r2973372 r3021460  
    1515            defined( 'CHLD_THM_CFG_DOCS_URL' ) or
    1616            define( 'CHLD_THM_CFG_DOCS_URL',            "http://www.childthemeplugin.com" );
    17             define( 'CHLD_THM_CFG_VERSION',             '2.6.3' );
     17            define( 'CHLD_THM_CFG_VERSION',             '2.6.4' );
    1818            define( 'CHLD_THM_CFG_PREV_VERSION',        '1.7.9.1' );
    1919            define( 'CHLD_THM_CFG_MIN_WP_VERSION',      '3.7' );
  • child-theme-configurator/tags/2.6.4/includes/classes/Packer.php

    r2321201 r3021460  
    359359                    $n -= 14;
    360360                endif;
    361                 $o .= $this->enctab[ $v % 91 ] . $this->enctab[ $v / 91 ];
     361                $o .= $this->enctab[ $v % 91 ] . $this->enctab[ (int) ( $v / 91 ) ];
    362362            endif;
    363363        endfor;
     
    365365            $o .= $this->enctab[ $b % 91 ];
    366366            if ( $n > 7 || $b > 90 )
    367                 $o .= $this->enctab[ $b / 91 ];
     367                $o .= $this->enctab[ (int) ( $b / 91 ) ];
    368368        endif;
    369369        return $o;
  • child-theme-configurator/tags/2.6.4/readme.txt

    r2973372 r3021460  
    55Requires at least: 4.0
    66Requires PHP: 5.6.36
    7 Tested up to: 6.3
    8 Stable tag: 2.6.3
     7Tested up to: 6.4
     8Stable tag: 2.6.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • child-theme-configurator/trunk/child-theme-configurator.php

    r2973372 r3021460  
    77    Plugin URI: http://www.childthemeplugin.com
    88    Description: When using the Customizer is not enough - Create child themes and customize styles, templates, functions and more.
    9     Version: 2.6.3
     9    Version: 2.6.4
    1010    Author: Lilaea Media
    1111    Author URI: http://www.lilaeamedia.com
     
    1313    Domain Path: /lang
    1414    License: GPLv2
    15     Copyright (C) 2014-2018 Lilaea Media
     15    Copyright (C) 2014-2024 Lilaea Media
    1616*/
    1717// define CTC constants
  • child-theme-configurator/trunk/includes/classes/CSS.php

    r2973372 r3021460  
    77    Plugin URI: http://www.childthemeplugin.com/
    88    Description: Handles all CSS input, output, parsing, normalization and storage
    9     Version: 2.6.3
     9    Version: 2.6.4
    1010    Author: Lilaea Media
    1111    Author URI: http://www.lilaeamedia.com/
     
    173173        $this->qpriority        = 10;
    174174        $this->mpriority        = 10;
    175         $this->version          = '2.6.3';
     175        $this->version          = '2.6.4';
    176176       
    177177        // do not set enqueue, not being set is used to flag old versions
     
    11151115     * FIXME - migrate to event parser? handle comments?
    11161116     */
    1117     function parse_css( $template, $basequery = NULL, $parse_imports = TRUE, $relpath = '', $reset = FALSE ) {
     1117    function parse_css( $template, $basequery = '', $parse_imports = TRUE, $relpath = '', $reset = FALSE ) {
    11181118        //$this->load_config( 'sel_ndx' );
    11191119        $this->load_config( 'val_ndx' );
  • child-theme-configurator/trunk/includes/classes/Core.php

    r2973372 r3021460  
    1515            defined( 'CHLD_THM_CFG_DOCS_URL' ) or
    1616            define( 'CHLD_THM_CFG_DOCS_URL',            "http://www.childthemeplugin.com" );
    17             define( 'CHLD_THM_CFG_VERSION',             '2.6.3' );
     17            define( 'CHLD_THM_CFG_VERSION',             '2.6.4' );
    1818            define( 'CHLD_THM_CFG_PREV_VERSION',        '1.7.9.1' );
    1919            define( 'CHLD_THM_CFG_MIN_WP_VERSION',      '3.7' );
  • child-theme-configurator/trunk/includes/classes/Packer.php

    r2321201 r3021460  
    359359                    $n -= 14;
    360360                endif;
    361                 $o .= $this->enctab[ $v % 91 ] . $this->enctab[ $v / 91 ];
     361                $o .= $this->enctab[ $v % 91 ] . $this->enctab[ (int) ( $v / 91 ) ];
    362362            endif;
    363363        endfor;
     
    365365            $o .= $this->enctab[ $b % 91 ];
    366366            if ( $n > 7 || $b > 90 )
    367                 $o .= $this->enctab[ $b / 91 ];
     367                $o .= $this->enctab[ (int) ( $b / 91 ) ];
    368368        endif;
    369369        return $o;
  • child-theme-configurator/trunk/readme.txt

    r2973372 r3021460  
    55Requires at least: 4.0
    66Requires PHP: 5.6.36
    7 Tested up to: 6.3
    8 Stable tag: 2.6.3
     7Tested up to: 6.4
     8Stable tag: 2.6.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.