Changeset 2623039
- Timestamp:
- 11/01/2021 10:01:14 PM (4 years ago)
- File:
-
- 1 edited
-
mondoplayer/trunk/mondoplayer.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mondoplayer/trunk/mondoplayer.php
r2621622 r2623039 5 5 Description: Video Content Curation Plugin - automatically curate and share videos. Boost engagement on your website and in social media with compelling video. 6 6 Author: MondoTag 7 Version: 1.0.35 77 Version: 1.0.359 8 8 Tested up to: 5.7.3 9 9 License: GPLv2 or later … … 189 189 190 190 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.12 5' );191 wp_register_script( $this->mondoplayer_plugin_slug, plugins_url("js/web_player_v2.js",__FILE__), false, '1.0.126' ); 192 192 $db = get_option("mondoplayer_db_version", ''); 193 193 if ($db != $db_version) { … … 962 962 global $wp_query; 963 963 964 if ($wp_query->is_404() && ! isset($_GET['u'])) {964 if ($wp_query->is_404() && (! isset($_GET['u']) || $wp_query->query_vars['name'] != "red")) { 965 965 $request_slug = $wp_query->query_vars['name']; 966 #error_log( ' - 404 for ' . $request_slug);966 error_log( ' - 404 for ' . $request_slug); 967 967 968 968 if (! $request_slug) { … … 983 983 return; 984 984 } 985 985 986 } 986 987 }
Note: See TracChangeset
for help on using the changeset viewer.