Plugin Directory

Changeset 3222396


Ignore:
Timestamp:
01/14/2025 04:34:46 PM (11 months ago)
Author:
paulschreiber
Message:

update to 1.3.13

Location:
mathjax-latex/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • mathjax-latex/trunk/class-mathjax-latex.php

    r2849448 r3222396  
    211211        }
    212212
    213         $config      = get_option( 'kblog_mathjax_config' ) ?: 'default';
     213        $config = get_option( 'kblog_mathjax_config' );
     214        if ( ! $config ) {
     215            $config = 'default';
     216        }
    214217        $mathjax_url = add_query_arg( 'config', $config, $mathjax_location );
    215218
     
    306309        $filtered_content = preg_replace_callback(
    307310            '/(<math.*>.*<\/math>)/isU',
    308             function( $matches ) {
     311            function ( $matches ) {
    309312                return str_replace( [ '<br/>', '<br />', '<br>' ], '', $matches[0] );
    310313            },
  • mathjax-latex/trunk/mathjax-latex.php

    r2849448 r3222396  
    1919 */
    2020
    21 define( 'MATHJAX_PLUGIN_VERSION', '1.3.12' );
     21define( 'MATHJAX_PLUGIN_VERSION', '1.3.13' );
    2222define( 'MATHJAX_JS_VERSION', '2.7.9' );
    2323
  • mathjax-latex/trunk/readme.txt

    r2849452 r3222396  
    44Tags: mathematics, math, latex, mathml, mathjax, science, res-comms, scholar, academic
    55Requires at least: 3.0
    6 Tested up to: 6.1.1
    7 Stable tag: 1.3.12
     6Tested up to: 6.7.1
     7Stable tag: 1.3.13
    88Requires PHP: 7.0.0
    99License: GPLv2
     
    3434
    3535== Changelog ==
     36
     37= 1.3.13 =
     381. PHP code style fixes
    3639
    3740= 1.3.12 =
Note: See TracChangeset for help on using the changeset viewer.