Plugin Directory

Changeset 3235741


Ignore:
Timestamp:
02/06/2025 12:50:09 AM (11 months ago)
Author:
back2nature
Message:

4.22.3

Location:
word-balloon/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • word-balloon/trunk/changelog.txt

    r3109267 r3235741  
     1= 4.22.3 =
     2* Released: February 6, 2025
     3* fixed: Minor fix.
     4
    15= 4.22.2 =
    26* Released: June 28, 2024
  • word-balloon/trunk/inc/class-w_b_list_table.php

    r3103805 r3235741  
    164164
    165165    if (isset($_REQUEST['orderby'])) {
    166       function usort_reorder($a,$b){
    167         $orderby = (!empty($_REQUEST['orderby'])) ? sanitize_text_field( esc_textarea($_REQUEST['orderby']) ) : 'title';
     166      if (!function_exists( 'usort_reorder' ) ) {
     167        function usort_reorder($a,$b){
     168          $orderby = (!empty($_REQUEST['orderby'])) ? sanitize_text_field( esc_textarea($_REQUEST['orderby']) ) : 'title';
    168169
    169         $order = (!empty($_REQUEST['order'])) ? sanitize_text_field( esc_textarea($_REQUEST['order']) ) : 'asc';
     170          $order = (!empty($_REQUEST['order'])) ? sanitize_text_field( esc_textarea($_REQUEST['order']) ) : 'asc';
    170171
    171         $result = strcmp($a[$orderby], $b[$orderby]);
     172          $result = strcmp($a[$orderby], $b[$orderby]);
    172173
    173         return ($order==='asc') ? $result : -$result;
     174          return ($order==='asc') ? $result : -$result;
     175        }
    174176      }
    175177      usort($data, sanitize_sql_orderby('usort_reorder'));
  • word-balloon/trunk/languages/word-balloon-ja.po

    r3103805 r3235741  
    22msgstr ""
    33"Project-Id-Version: Word Balloon\n"
    4 "POT-Creation-Date: 2024-06-18 09:59+0900\n"
    5 "PO-Revision-Date: 2024-06-18 10:00+0900\n"
     4"POT-Creation-Date: 2024-11-18 14:35+0900\n"
     5"PO-Revision-Date: 2024-11-18 14:35+0900\n"
    66"Last-Translator: \n"
    77"Language-Team: \n"
     
    1111"Content-Transfer-Encoding: 8bit\n"
    1212"Plural-Forms: nplurals=1; plural=0;\n"
    13 "X-Generator: Poedit 3.4.4\n"
     13"X-Generator: Poedit 3.5\n"
    1414"X-Poedit-Basepath: ..\n"
    1515"X-Poedit-WPHeader: word-balloon.php\n"
  • word-balloon/trunk/readme.txt

    r3115961 r3235741  
    44Tags: speech,bubble,balloon,chat,comic
    55Requires at least: 3.9.3
    6 Tested up to: 6.6
    7 Stable tag: 4.22.2
     6Tested up to: 6.7
     7Stable tag: 4.22.3
    88Requires PHP: 5.3
    99License: GNU General Public License v3 or later
     
    5151
    5252== Changelog ==
     53
     54= 4.22.3 =
     55* Released: February 6, 2025
     56* fixed: Minor fix.
    5357
    5458= 4.22.2 =
  • word-balloon/trunk/word-balloon.php

    r3109267 r3235741  
    44Plugin URI: https://dev.word-balloon.com/en/word-balloon/
    55Description: Support for Block editor(Gutenberg) & Classic Editor.You will easy to add speech balloon in your post.
    6 Version: 4.22.2
     6Version: 4.22.3
    77Author: YAHMAN
    88Author URI: https://back2nature.jp/en/
Note: See TracChangeset for help on using the changeset viewer.