Changeset 873471
- Timestamp:
- 03/11/2014 03:50:50 PM (12 years ago)
- Location:
- buddypress-media/trunk
- Files:
-
- 4 edited
-
app/main/RTMedia.php (modified) (2 diffs)
-
index.php (modified) (1 diff)
-
languages/rtmedia-es_ES.mo (modified) (previous)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
buddypress-media/trunk/app/main/RTMedia.php
r864871 r873471 863 863 } elseif (isset($_REQUEST['id'])) { //For Regenerate Thumbnails Plugin 864 864 $model = new RTMediaModel(); 865 $result = $model->get_by_media_id($_REQUEST['id']); 866 if ($result) { 867 if (isset($result["result"]) && count($result["result"]) > 0) { 865 $result = $model->get( array( 'media_id' => $_REQUEST['id'] ) ); 866 if (! empty( $result ) ) { 868 867 $bp_media_sizes = $this->image_sizes(); 869 868 $sizes = array( … … 873 872 'rt_media_featured_image' => $bp_media_sizes['featured'], 874 873 ); 875 } else {876 $sizes = $this->unset_bp_media_image_sizes_details($sizes);877 }878 874 } else { 879 875 $sizes = $this->unset_bp_media_image_sizes_details($sizes); -
buddypress-media/trunk/index.php
r869229 r873471 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. 77 Version: 3.6.8 8 8 Author: rtCamp 9 9 Text Domain: rtmedia -
buddypress-media/trunk/readme.txt
r869229 r873471 7 7 Requires at least: WordPress 3.6 8 8 Tested up to: WordPress 3.7 + BuddyPress 1.8.1 9 Stable tag: 3.6. 79 Stable tag: 3.6.8 10 10 11 11 Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works mobile/tablets devices. … … 133 133 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 136 = 3.6.8 = 137 * Fix Regenerate Thumbnail plugin image sizes issue 138 * Update Spanish language files 139 135 140 = 3.6.7 = 136 141 * Update Spanish language files … … 723 728 == Upgrade Notice == 724 729 725 = 3.6. 7=726 Requires BuddyPress 1.7 or higher, if using BuddyPress. Update Spanish language files, bug fix for single media edit.730 = 3.6.8 = 731 Requires BuddyPress 1.7 or higher, if using BuddyPress. Fix Regenerate Thumbnail plugin image sizes issue. 727 732 728 733 == Sponsors ==
Note: See TracChangeset
for help on using the changeset viewer.