Changeset 908117
- Timestamp:
- 05/05/2014 09:36:56 AM (12 years ago)
- Location:
- buddypress-media/trunk
- Files:
-
- 4 edited
-
app/assets/js/rtMedia.js (modified) (1 diff)
-
app/main/controllers/privacy/RTMediaPrivacy.php (modified) (1 diff)
-
index.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
buddypress-media/trunk/app/assets/js/rtMedia.js
r900937 r908117 405 405 406 406 function rtmedia_disable_popup_navigation_comment_focus() { 407 jQuery( '#comment_content').live('focusin',function(){407 jQuery(document).on('focusin','#comment_content', function(){ 408 408 jQuery(document).unbind('keydown'); 409 409 }); 410 jQuery( '#comment_content').live('focusout',function(){410 jQuery(document).on('focusout','#comment_content',function(){ 411 411 var rtm_mfp = jQuery.magnificPopup.instance; 412 412 jQuery(document).on('keydown',function(e) { -
buddypress-media/trunk/app/main/controllers/privacy/RTMediaPrivacy.php
r854592 r908117 23 23 //add_action ( 'rtmedia_after_file_upload_ui' , array ( $this , 'uploader_privacy_ui' ) ) ; 24 24 //add_action ( 'rtmedia_add_edit_fields' , array ( $this , 'edit_media_privacy_ui' ),2 ) ; 25 add_action ( 'bp_init' , array ( $this , 'add_nav' ) ) ; 26 add_action ( 'bp_template_content' , array ( $this , 'content' ) ) ; 27 add_filter ( 'bp_activity_get_user_join_filter' , array ( $this , 'activity_privacy' ) , 10 , 6 ) ; 28 } 29 } 25 add_action ( 'bp_init' , array( $this , 'add_nav' ) ) ; 26 add_action ( 'bp_template_content' , array( $this , 'content' ) ) ; 27 add_filter ( 'bp_activity_get_user_join_filter' , array( $this , 'activity_privacy' ), 10, 6 ) ; 28 add_filter ( 'bp_use_legacy_activity_query' , array( $this , 'enable_buddypress_privacy' ), 10, 3 ) ; 29 } 30 } 31 32 function enable_buddypress_privacy( $flag, $method, $func_args ) { 33 global $rtmedia; 34 $option = $rtmedia->options; 35 if( isset( $option['privacy_enabled'] ) && $option['privacy_enabled'] != '0' ) { 36 if( $method == "BP_Activity_Activity::get" ) { 37 $flag = true; 38 } 39 } 40 return $flag; 41 } 30 42 31 43 function edit_media_privacy_ui($echo = true) { -
buddypress-media/trunk/index.php
r900937 r908117 5 5 Plugin URI: http://rtcamp.com/buddypress-media/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media 6 6 Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously! 7 Version: 3.6.1 37 Version: 3.6.14 8 8 Author: rtCamp 9 9 Text Domain: rtmedia -
buddypress-media/trunk/readme.txt
r900937 r908117 7 7 Requires at least: WordPress 3.6 8 8 Tested up to: WordPress 3.9 + BuddyPress 2.0 9 Stable tag: 3.6.1 39 Stable tag: 3.6.14 10 10 11 11 Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works mobile/tablets devices. … … 134 134 Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Features page") to get some details about future releases. 135 135 136 = 3.6.14 = 137 * Fix BuddyPress privacy issue 138 136 139 = 3.6.13 = 137 140 * Media template update … … 750 753 == Upgrade Notice == 751 754 752 = 3.6.1 3=753 Requires BuddyPress 1.7 or higher, if using BuddyPress. Media template update, translation update, bug fixes755 = 3.6.14 = 756 Requires BuddyPress 1.7 or higher, if using BuddyPress. Fix BuddyPress privacy issue. 754 757 755 758 == Sponsors ==
Note: See TracChangeset
for help on using the changeset viewer.