Plugin Directory

Changeset 2805264


Ignore:
Timestamp:
10/26/2022 06:05:52 PM (3 years ago)
Author:
vabtopic
Message:

release 1.2.2

Location:
vab-forms-with-chart
Files:
37 added
4 edited

Legend:

Unmodified
Added
Removed
  • vab-forms-with-chart/trunk/admin/admin.php

    r2792210 r2805264  
    901901                        '</center>' .
    902902                        '<ol>' .
    903                             '<li>' . esc_html__( 'Small changes in HTML markup', 'VABFWC' ) . '</li>' .
    904                             '<li>' . esc_html__( 'Added the ability to upload data to a CSV file. Files will automatically be split by month', 'VABFWC' ) . '</li>' .
    905                             '<li>' . esc_html__( 'Added options: «Manage the display of CSV files for users»', 'VABFWC' ) . '</li>' .
    906                             '<li>' . esc_html__( 'Added the ability to hide/show the chart to specific users (optional)', 'VABFWC' ) . '</li>' .
    907                             '<li>' . esc_html__( 'Added option: «Show the number of answers for each question above the pie chart»', 'VABFWC' ) . '</li>' .
     903                            '<li>' . esc_html__( 'Small changes for better compatibility with Wordpress 6.2', 'VABFWC' ) . '</li>' .
    908904                        '</ol>' .
    909905                    '</div>';
  • vab-forms-with-chart/trunk/includes/SHORTCODE.php

    r2792210 r2805264  
    849849             file_exists( $VABFWC_Class->FD . 'csv_logs' ) ) {
    850850        $csv_table_arg              =   array( /* wp_kses */
     851            'br'                                =>  array(),
    851852            'center'                        =>  array(),
    852853            'div'                               =>  array(
     
    868869        $getFileProtect             = 'HNUv6Q8YO4u8hTfhs6e5';
    869870        $csv_table                      = '';
    870         $csv_table .=   '<center>
     871        $csv_table .=   '<br><center>
    871872                                     <div class="vabfwc_spoiler-wrap">
    872873                                        <div class="vabfwc_spoiler-head folded" tabindex="0">' . esc_html__('CSV log files', 'VABFWC') . '</div>
  • vab-forms-with-chart/trunk/readme.txt

    r2803894 r2805264  
    66Requires at least: 5.5.1
    77Requires PHP: 5.6.20
    8 Tested up to: 6.0.3
    9 Stable tag: 1.2.1
     8Tested up to: 6.2.0
     9Stable tag: 1.2.2
    1010License: GPLv2
    1111License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    229229== Changelog ==
    230230
     231= 1.2.2 - 26.10.2022 =
     232
     233* Small changes for better compatibility with Wordpress 6.2;
     234
    231235= 1.2.1 - 30.09.2022 =
    232236
  • vab-forms-with-chart/trunk/vab-forms-with-chart.php

    r2792210 r2805264  
    77 * Author:                  Vladimir Anatol`evich Brumer
    88 * License:                     GPLv2
    9  * Version:                 1.2.1
     9 * Version:                 1.2.2
    1010 *
    1111 * Text Domain:             VABFWC
     
    2323}
    2424if ( ! defined( 'VABFWC_WP_VERSION_CHECK' ) ) {
    25     define( 'VABFWC_WP_VERSION_CHECK', str_pad( str_replace( '.', '', VABFWC_WP_VERSION ), 3, '0', STR_PAD_RIGHT ) );
     25    define( 'VABFWC_WP_VERSION_CHECK', str_pad( str_replace( '.', '', mb_strstr( VABFWC_WP_VERSION, '-', true ) ), 3, '0', STR_PAD_RIGHT ) );
    2626}
    2727if ( VABFWC_WP_VERSION_CHECK < 551 ) {
     
    2929}
    3030if ( ! defined( 'VABFWC_VERSION' ) ) {
    31     define( 'VABFWC_VERSION', '1.2.1' );
    32 }
    33 global $wp_version;
    34 if ( ! defined( 'VABFWC_WP_VERSION' ) ) {
    35     define( 'VABFWC_WP_VERSION', $wp_version );
     31    define( 'VABFWC_VERSION', '1.2.2' );
    3632}
    3733if ( ! defined( 'VABFWCGSU' ) ) {
Note: See TracChangeset for help on using the changeset viewer.