Changeset 1186747
- Timestamp:
- 06/24/2015 09:58:03 AM (11 years ago)
- Location:
- subscribed-podcasts
- Files:
-
- 4 edited
- 1 copied
-
tags/0.1.2 (copied) (copied from subscribed-podcasts/trunk)
-
tags/0.1.2/readme.txt (modified) (1 diff)
-
tags/0.1.2/subscribed-podcasts.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/subscribed-podcasts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
subscribed-podcasts/tags/0.1.2/readme.txt
r1111895 r1186747 49 49 50 50 == Changelog == 51 = 0.1.2 = 52 * **[fix]** 53 * OPML File upload permissions 54 51 55 = 0.1.1 = 52 56 * **[enh]** -
subscribed-podcasts/tags/0.1.2/subscribed-podcasts.php
r1111895 r1186747 5 5 * Plugin URI: https://github.com/sethiele/subscribed-podcasts 6 6 * Description: Display your subscribed podcasts 7 * Version: 0.1. 17 * Version: 0.1.2 8 8 * Author: Sebastian 9 9 * Author URI: http://sebastian-thiele.net … … 19 19 } 20 20 21 // Upload XML-Files21 // Upload OPML-Files 22 22 add_filter('upload_mimes', 'subpod_upload_xml'); 23 23 function subpod_upload_xml($mimes) { 24 $mimes = array_merge($mimes, array(' xml' => 'application/xml'));24 $mimes = array_merge($mimes, array('opml' => 'application/xml')); 25 25 return $mimes; 26 26 } -
subscribed-podcasts/trunk/readme.txt
r1111895 r1186747 49 49 50 50 == Changelog == 51 = 0.1.2 = 52 * **[fix]** 53 * OPML File upload permissions 54 51 55 = 0.1.1 = 52 56 * **[enh]** -
subscribed-podcasts/trunk/subscribed-podcasts.php
r1111895 r1186747 5 5 * Plugin URI: https://github.com/sethiele/subscribed-podcasts 6 6 * Description: Display your subscribed podcasts 7 * Version: 0.1. 17 * Version: 0.1.2 8 8 * Author: Sebastian 9 9 * Author URI: http://sebastian-thiele.net … … 19 19 } 20 20 21 // Upload XML-Files21 // Upload OPML-Files 22 22 add_filter('upload_mimes', 'subpod_upload_xml'); 23 23 function subpod_upload_xml($mimes) { 24 $mimes = array_merge($mimes, array(' xml' => 'application/xml'));24 $mimes = array_merge($mimes, array('opml' => 'application/xml')); 25 25 return $mimes; 26 26 }
Note: See TracChangeset
for help on using the changeset viewer.