Plugin Directory

Changeset 1986749


Ignore:
Timestamp:
12/06/2018 12:24:09 PM (7 years ago)
Author:
podigee
Message:

bug fix to allow hyphens in subdomains

Location:
podigee
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • podigee/tags/0.6.4/podigee-quick-publish.php

    r1974226 r1986749  
    44* Plugin URI:  https://podigee.com
    55* Description: Let's you import metadata from your Podigee podcast feed right into the Wordpress post editor. Not (yet) compatible to Gutenberg. Developed for Podigee by Jürgen Krauß (https://www.es-ist-ein-krauss.de/).
    6 * Version:     0.6.3
     6* Version:     0.6.4
    77* Author:      Podigee
    88* Author URI:  https://podigee.com
     
    127127    }
    128128    $options['pfex_slug'] = strtolower(trim($input['pfex_slug']));
    129     if(!preg_match('/^[a-z0-9]+$/i', $options['pfex_slug'])) {
     129    if(!preg_match('/^[a-z0-9-_]+$/i', $options['pfex_slug'])) {
    130130        $options['pfex_slug'] = '';
    131131    }
  • podigee/tags/0.6.4/readme.txt

    r1974226 r1986749  
    55Tested up to: 4.9
    66Requires PHP: 5.2.4
    7 Stable tag: 0.6.3
     7Stable tag: 0.6.4
    88License:     MIT License
    99License URI: https://opensource.org/licenses/MIT
    1010 
    11 Let's you import metadata from your Podigee podcast feed right into the Wordpress post editor. Not (yet) compatible to Gutenberg. Developed for Podigee by Jürgen Krauß (https://www.es-ist-ein-krauss.de/).
     11Let's you import metadata from your Podigee podcast feed right into the Wordpress post editor. Not (yet) compatible to Gutenberg. Developed for Podigee by [Jürgen Krauß](https://www.es-ist-ein-krauss.de/).
    1212
    1313== Description ==
     
    1919Note: The plugin currently does not work with the Gutenberg editor! We plan to add that functionality in a future version.
    2020
    21 Developed for Podigee by Jürgen Krauß (https://www.es-ist-ein-krauss.de/).
     21Developed for Podigee by [Jürgen Krauß](https://www.es-ist-ein-krauss.de/).
    2222
    2323MIT License
  • podigee/trunk/podigee-quick-publish.php

    r1974226 r1986749  
    44* Plugin URI:  https://podigee.com
    55* Description: Let's you import metadata from your Podigee podcast feed right into the Wordpress post editor. Not (yet) compatible to Gutenberg. Developed for Podigee by Jürgen Krauß (https://www.es-ist-ein-krauss.de/).
    6 * Version:     0.6.3
     6* Version:     0.6.4
    77* Author:      Podigee
    88* Author URI:  https://podigee.com
     
    127127    }
    128128    $options['pfex_slug'] = strtolower(trim($input['pfex_slug']));
    129     if(!preg_match('/^[a-z0-9]+$/i', $options['pfex_slug'])) {
     129    if(!preg_match('/^[a-z0-9-_]+$/i', $options['pfex_slug'])) {
    130130        $options['pfex_slug'] = '';
    131131    }
  • podigee/trunk/readme.txt

    r1974226 r1986749  
    55Tested up to: 4.9
    66Requires PHP: 5.2.4
    7 Stable tag: 0.6.3
     7Stable tag: 0.6.4
    88License:     MIT License
    99License URI: https://opensource.org/licenses/MIT
    1010 
    11 Let's you import metadata from your Podigee podcast feed right into the Wordpress post editor. Not (yet) compatible to Gutenberg. Developed for Podigee by Jürgen Krauß (https://www.es-ist-ein-krauss.de/).
     11Let's you import metadata from your Podigee podcast feed right into the Wordpress post editor. Not (yet) compatible to Gutenberg. Developed for Podigee by [Jürgen Krauß](https://www.es-ist-ein-krauss.de/).
    1212
    1313== Description ==
     
    1919Note: The plugin currently does not work with the Gutenberg editor! We plan to add that functionality in a future version.
    2020
    21 Developed for Podigee by Jürgen Krauß (https://www.es-ist-ein-krauss.de/).
     21Developed for Podigee by [Jürgen Krauß](https://www.es-ist-ein-krauss.de/).
    2222
    2323MIT License
Note: See TracChangeset for help on using the changeset viewer.