Skip to content

Commit 2a55d56

Browse files
authored
Merge pull request #2165 from rtCamp/develop
Version Update v4.7.2 [ master ]
2 parents 8df51e0 + 5f9640f commit 2a55d56

File tree

14 files changed

+5968
-4610
lines changed

14 files changed

+5968
-4610
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,16 @@ https://www.youtube.com/watch?v=dJrykKQGDcs
151151

152152
## Changelog ##
153153

154+
### 4.7.2
155+
156+
* FIXED
157+
* Fixed GoDAM Player rendering issue on Multisite.
158+
* Fixed GoDAM Player Skins not loading on Multisite.
159+
160+
* ENHANCEMENTS
161+
* Better handling of rtMedia Notifications.
162+
* Updated jQuery Deprecated Methods.
163+
154164
### 4.7.1
155165

156166
* FIXED

app/admin/templates/notices/transcoder.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@
55
* @package rtMedia
66
*/
77

8+
// Include plugin.php if not already loaded.
9+
if ( ! function_exists( 'is_plugin_active' ) ) {
10+
include_once ABSPATH . 'wp-admin/includes/plugin.php';
11+
}
12+
13+
// If GoDAM is active right now, set a permanent flag.
14+
if ( is_plugin_active( 'godam/godam.php' ) ) {
15+
update_option( 'godam_plugin_activated_once', true );
16+
}
17+
18+
// If the permanent flag is set, never show the notice.
19+
if ( get_option( 'godam_plugin_activated_once' ) ) {
20+
return;
21+
}
22+
823
?>
924

1025
<div class="notice notice-info install-transcoder-notice is-dismissible">

0 commit comments

Comments
 (0)