Plugin Directory

Changeset 1186747


Ignore:
Timestamp:
06/24/2015 09:58:03 AM (11 years ago)
Author:
sebat
Message:

version 0.1.2

Location:
subscribed-podcasts
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • subscribed-podcasts/tags/0.1.2/readme.txt

    r1111895 r1186747  
    4949
    5050== Changelog ==
     51= 0.1.2 =
     52* **[fix]**
     53 * OPML File upload permissions
     54
    5155= 0.1.1 =
    5256* **[enh]**
  • subscribed-podcasts/tags/0.1.2/subscribed-podcasts.php

    r1111895 r1186747  
    55   * Plugin URI: https://github.com/sethiele/subscribed-podcasts
    66   * Description: Display your subscribed podcasts
    7    * Version: 0.1.1
     7   * Version: 0.1.2
    88   * Author: Sebastian
    99   * Author URI: http://sebastian-thiele.net
     
    1919  }
    2020
    21   // Upload XML-Files
     21  // Upload OPML-Files
    2222  add_filter('upload_mimes', 'subpod_upload_xml');
    2323  function subpod_upload_xml($mimes) {
    24       $mimes = array_merge($mimes, array('xml' => 'application/xml'));
     24      $mimes = array_merge($mimes, array('opml' => 'application/xml'));
    2525      return $mimes;
    2626  }
  • subscribed-podcasts/trunk/readme.txt

    r1111895 r1186747  
    4949
    5050== Changelog ==
     51= 0.1.2 =
     52* **[fix]**
     53 * OPML File upload permissions
     54
    5155= 0.1.1 =
    5256* **[enh]**
  • subscribed-podcasts/trunk/subscribed-podcasts.php

    r1111895 r1186747  
    55   * Plugin URI: https://github.com/sethiele/subscribed-podcasts
    66   * Description: Display your subscribed podcasts
    7    * Version: 0.1.1
     7   * Version: 0.1.2
    88   * Author: Sebastian
    99   * Author URI: http://sebastian-thiele.net
     
    1919  }
    2020
    21   // Upload XML-Files
     21  // Upload OPML-Files
    2222  add_filter('upload_mimes', 'subpod_upload_xml');
    2323  function subpod_upload_xml($mimes) {
    24       $mimes = array_merge($mimes, array('xml' => 'application/xml'));
     24      $mimes = array_merge($mimes, array('opml' => 'application/xml'));
    2525      return $mimes;
    2626  }
Note: See TracChangeset for help on using the changeset viewer.