Plugin Directory

Changeset 2623039


Ignore:
Timestamp:
11/01/2021 10:01:14 PM (4 years ago)
Author:
crisworth
Message:

Feature update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • mondoplayer/trunk/mondoplayer.php

    r2621622 r2623039  
    55    Description: Video Content Curation Plugin - automatically curate and share videos. Boost engagement on your website and in social media with compelling video.
    66    Author: MondoTag
    7     Version: 1.0.357
     7    Version: 1.0.359
    88    Tested up to: 5.7.3
    99    License: GPLv2 or later
     
    189189
    190190        wp_register_style( $this->mondoplayer_plugin_slug, plugins_url("css/web_player.css",__FILE__), false, '1.0.53' );
    191         wp_register_script( $this->mondoplayer_plugin_slug, plugins_url("js/web_player_v2.js",__FILE__), false, '1.0.125' );
     191        wp_register_script( $this->mondoplayer_plugin_slug, plugins_url("js/web_player_v2.js",__FILE__), false, '1.0.126' );
    192192        $db = get_option("mondoplayer_db_version", '');
    193193        if ($db != $db_version) {
     
    962962        global $wp_query;
    963963
    964         if ($wp_query->is_404() && ! isset($_GET['u']))  {
     964        if ($wp_query->is_404() && (! isset($_GET['u']) || $wp_query->query_vars['name'] != "red"))  {
    965965            $request_slug = $wp_query->query_vars['name'];
    966             #error_log( ' - 404 for ' . $request_slug);
     966            error_log( ' - 404 for ' . $request_slug);
    967967
    968968            if (! $request_slug) {
     
    983983                return;
    984984            }
     985
    985986        }
    986987    }
Note: See TracChangeset for help on using the changeset viewer.