Plugin Directory

Changeset 3360444


Ignore:
Timestamp:
09/12/2025 10:18:31 AM (7 months ago)
Author:
vaksin
Message:

0.0.10

Fix WP_DEBUG_DISPLAY condition

Location:
just-translate
Files:
297 added
3 edited

Legend:

Unmodified
Added
Removed
  • just-translate/trunk/classes/jt-string.php

    r3335930 r3360444  
    5050            /** Tanggal tidak perlu diregister
    5151             * saat sedang debug display juga tidak perlu register, agar error message tidak masuk ke strings
    52              */                                     
    53             if ( !$this->is_date && !(defined('WP_DEBUG_DISPLAY') && WP_DEBUG_DISPLAY) ) {
     52             */                         
     53            $debug = defined('WP_DEBUG') && WP_DEBUG;
     54            $debug_display = defined('WP_DEBUG_DISPLAY') && WP_DEBUG_DISPLAY;
     55            if ( !$this->is_date && !($debug && $debug_display) ) {
    5456                $this->register();
    5557            }                       
  • just-translate/trunk/just-translate.php

    r3338696 r3360444  
    33 * Plugin Name:       Just Translate
    44 * Description:       Automatically captures and translates text strings using a custom translation panel with multi-language support.
    5  * Version:           0.0.9
     5 * Version:           0.0.10
    66 * Requires at least: 6.5
    77 * Requires PHP:      8.1
  • just-translate/trunk/readme.txt

    r3338696 r3360444  
    66Tested up to: 6.8
    77Requires PHP: 8.1
    8 Stable tag: 0.0.9
     8Stable tag: 0.0.10
    99License: GPLv2 or later 
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html 
     
    111111
    112112== Changelog ==
     113= 0.0.10 =
     114Fix WP_DEBUG_DISPLAY condition
     115
    113116= 0.0.9 =
    114117* Fix cache by device
     
    147150== Upgrade Notice ==
    148151
    149 = 0.0.9 =
    150 Fix cache by device and add ability to translate link tag url
     152= 0.0.10 =
     153Fix WP_DEBUG_DISPLAY condition
Note: See TracChangeset for help on using the changeset viewer.