Plugin Directory

Changeset 2694912


Ignore:
Timestamp:
03/16/2022 03:40:29 PM (4 years ago)
Author:
ClearcodeHQ
Message:

Version 1.0.4

Location:
cc-clean-head-tags
Files:
22 added
6 edited

Legend:

Unmodified
Added
Removed
  • cc-clean-head-tags/trunk/README.txt

    r2050413 r2694912  
    44Requires PHP: 7.2
    55Requires at least: 4.7.1
    6 Tested up to: 5.1.1
     6Tested up to: 5.9.2
    77Stable tag: trunk
    88License: GPLv3
     
    6969== Changelog ==
    7070
     71= 1.0.4 =
     72*Release date: 16.03.2022*
     73
     74* Added: PHP 8.0 support.
     75
    7176= 1.0.3 =
    7277*Release date: 14.03.2019*
  • cc-clean-head-tags/trunk/framework/filterer.php

    r2050413 r2694912  
    22
    33/*
    4     Copyright (C) 2019 by Clearcode <http://clearcode.cc>
     4    Copyright (C) 2022 by Clearcode <http://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-clean-head-tags/trunk/framework/plugin.php

    r2050413 r2694912  
    22
    33/*
    4     Copyright (C) 2019 by Clearcode <http://clearcode.cc>
     4    Copyright (C) 2022 by Clearcode <http://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-clean-head-tags/trunk/framework/singleton.php

    r2050413 r2694912  
    22
    33/*
    4     Copyright (C) 2019 by Clearcode <http://clearcode.cc>
     4    Copyright (C) 2022 by Clearcode <http://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
     
    2727if ( ! class_exists( __NAMESPACE__ . '\Singleton' ) ) {
    2828    abstract class Singleton {
    29         final private function __clone() {
    30             _doing_it_wrong( __METHOD__, __( 'Cheatin&#8217; uh?' ), '' );
    31         }
    32         final private function __wakeup() {
    33             _doing_it_wrong( __METHOD__, __( 'Cheatin&#8217; uh?' ), '' );
    34         }
    35        
    3629        protected function __construct() {
    3730            _doing_it_wrong( __METHOD__, __( 'Cheatin&#8217; uh?' ), '' );
  • cc-clean-head-tags/trunk/includes/clean-head-tags.php

    r2050413 r2694912  
    22
    33/*
    4     Copyright (C) 2019 by Clearcode <http://clearcode.cc>
     4    Copyright (C) 2022 by Clearcode <http://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-clean-head-tags/trunk/plugin.php

    r2050413 r2694912  
    55    Plugin URI: https://wordpress.org/plugins/cc-clean-head-tags
    66    Description: This plugin removes unnecessary html tags from the head section as well as version numbers from style/script links.
    7     Version: 1.0.3
     7    Version: 1.0.4
    88    Author: Clearcode
    99    Author URI: https://clearcode.cc
     
    1313    License URI: http://www.gnu.org/licenses/gpl-3.0.txt
    1414
    15     Copyright (C) 2019 by Clearcode <http://clearcode.cc>
     15    Copyright (C) 2022 by Clearcode <http://clearcode.cc>
    1616    and associates (see AUTHORS.txt file).
    1717
Note: See TracChangeset for help on using the changeset viewer.