🔥 HOT: Changeset/ - Collection

Changeset 2874822


Ignore:
Timestamp:
03/04/2023 10:17:12 PM (3 years ago)
Author:
BinaryMoon
Message:
  • Fix PHP 8.2 error.
  • Fix undefined array key error in admin.
Location:
translate-words/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • translate-words/trunk/includes/administration.php

    r2728179 r2874822  
    6464    }
    6565
    66     if ( ! $_REQUEST['page'] || 'tww_settings' !== $_REQUEST['page'] ) {
     66    if ( ! isset( $_REQUEST['page'] ) ) {
     67        return;
     68    }
     69
     70    if ( isset( $_REQUEST['page'] ) && 'tww_settings' !== $_REQUEST['page'] ) {
    6771        return;
    6872    }
  • translate-words/trunk/readme.txt

    r2755276 r2874822  
    33Tags: gettext, ngettext, string translations, translate
    44Requires at least: 4.9.0
    5 Tested up to: 6.0
     5Tested up to: 6.3
    66Stable tag: trunk
    77Requires PHP: 7.0
     
    4444== Changelog ==
    4545
     46= 1.2.4 - 4th March 2023 =
     47* Fix PHP 8.2 error.
     48
     49= 1.2.3 - 1st January 2023 =
     50* Fix undefined array key error in admin.
     51
    4652= 1.2.2 - 12th July 2022 =
    4753* Do case sensitive replacements first, then case insensitive ones.
  • translate-words/trunk/translate-wp-words.php

    r2755276 r2874822  
    33 * Plugin Name: Translate Words
    44 * Description: Thanks to this plugin you can translate all the strings of your portal through the admin panel.
    5  * Version: 1.2.2
     5 * Version: 1.2.4
    66 * Author: Ben Gillbanks
    77 * Author URI: https://www.binarymoon.co.uk/
Note: See TracChangeset for help on using the changeset viewer.