Plugin Directory

Changeset 2770535


Ignore:
Timestamp:
08/15/2022 12:24:44 PM (4 years ago)
Author:
PascalBajorat
Message:

4.0.5

Location:
pb-seo-friendly-images
Files:
33 added
3 edited

Legend:

Unmodified
Added
Removed
  • pb-seo-friendly-images/trunk/inc/pbsfi_optimizer.php

    r2251998 r2770535  
    250250        // Optimize encoding
    251251        if( function_exists('mb_convert_encoding') && $this->settings['encoding_mode'] != 'off' ) {
    252             //$content = @mb_convert_encoding( $content, 'utf-8', $this->settings['encoding'] );
    253             $content = @mb_convert_encoding( $content, 'HTML-ENTITIES', $this->settings['encoding'] );
     252            $encoding = !empty($this->settings['encoding']) ? $this->settings['encoding'] : get_bloginfo( 'charset' );
     253            //$content = @mb_convert_encoding( $content, 'utf-8', $encoding );
     254            $content = @mb_convert_encoding( $content, 'HTML-ENTITIES', $encoding );
    254255        } else {
    255256            $content = $encoding_declaration.$content;
  • pb-seo-friendly-images/trunk/pb-seo-friendly-images.php

    r2251998 r2770535  
    44Plugin URI: https://wordpress.org/extend/plugins/pb-seo-friendly-images/
    55Description: This plugin is a full-featured solution for SEO friendly images. Optimize "alt" and "title" attributes for all images and post thumbnails. This plugin helps you to improve your traffic from search engines.
    6 Version: 4.0.4
     6Version: 4.0.5
    77Author: Pascal Bajorat
    88Author URI: https://www.bajorat-media.com
     
    1111License: GNU General Public License v.3 and Commercial for Pro-Parts
    1212
    13 Copyright (c) 2020 by Bajorat-Media.com.
     13Copyright (c) 2022 by Bajorat-Media.com.
    1414*/
    1515
     
    2222    {
    2323        /** @var string Plugin version */
    24         var $version = '4.0.4';
     24        var $version = '4.0.5';
    2525
    2626        /** @var string DB version */
  • pb-seo-friendly-images/trunk/readme.txt

    r2450852 r2770535  
    44Tags: seo, images, Post, admin, google, attachment, optimize, photo, picture, image, media, photos, pictures, alt, title, lazy, load
    55Requires at least: 5.0
    6 Tested up to: 5.6
    7 Stable tag: 4.0.4
     6Tested up to: 6.1
     7Stable tag: 4.0.5
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    4747
    4848== Changelog ==
     49
     50= 4.0.5 =
     51* Bugfix & Optimization
     52* PHP 8.x update
    4953
    5054= 4.0.4 =
Note: See TracChangeset for help on using the changeset viewer.