Plugin Directory

Changeset 2374943


Ignore:
Timestamp:
09/04/2020 05:14:01 AM (6 years ago)
Author:
om4
Message:

Update to version 1.0.7 from GitHub

Location:
log-out-shortcode
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • log-out-shortcode/tags/1.0.7/log-out-shortcode.php

    r2088897 r2374943  
    11<?php
    2 /**
     2/*
    33Plugin Name: Log Out Shortcode
    4 Plugin URI: https://om4.com.au/plugins/log-out-shortcode/
     4Plugin URI: https://om4.io/plugins/log-out-shortcode/
    55Description: Easily add a log out link to a post or page using a simple <code>[logout]</code> shortcode.
    6 Version: 1.0.6
    7 Author: OM4
    8 Author URI: https://om4.com.au/plugins/
     6Version: 1.0.7
     7Author: OM4com.au/plugin
     8Author URI: https://om4.io/
    99Text Domain: log-out-shortcode
    1010License: GPLv2
     
    1212
    1313/*
    14 Copyright 2014-2016 OM4 (email: plugins@om4.com.au    web: https://om4.com.au/)
     14Copyright 2014-2016 OM4 (email: plugins@om4.com.au    web: https://om4.io/)
    1515
    1616This program is free software; you can redistribute it and/or modify
     
    6767        $classes    = explode( ' ', $atts['class'] );
    6868        $classes    = array_map( 'sanitize_html_class', $classes );
    69         $class_html = ' class="' . implode( $classes, ' ' ) . '"';
     69        $class_html = ' class="' . implode( ' ', $classes ) . '"';
    7070    }
    7171
  • log-out-shortcode/tags/1.0.7/readme.txt

    r2088897 r2374943  
    33Contributors: jamescollins
    44Requires at least: 3.9
    5 Tested up to: 5.2
    6 Stable tag: 1.0.6
     5Tested up to: 5.5
     6Stable tag: 1.0.7
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6363== Changelog ==
    6464
     65= 1.0.7 =
     66* Mark WP 5.5 compatible
     67
    6568= 1.0.6 =
    6669* Mark WP 5.2 compatible
  • log-out-shortcode/trunk/log-out-shortcode.php

    r2088897 r2374943  
    11<?php
    2 /**
     2/*
    33Plugin Name: Log Out Shortcode
    4 Plugin URI: https://om4.com.au/plugins/log-out-shortcode/
     4Plugin URI: https://om4.io/plugins/log-out-shortcode/
    55Description: Easily add a log out link to a post or page using a simple <code>[logout]</code> shortcode.
    6 Version: 1.0.6
    7 Author: OM4
    8 Author URI: https://om4.com.au/plugins/
     6Version: 1.0.7
     7Author: OM4com.au/plugin
     8Author URI: https://om4.io/
    99Text Domain: log-out-shortcode
    1010License: GPLv2
     
    1212
    1313/*
    14 Copyright 2014-2016 OM4 (email: plugins@om4.com.au    web: https://om4.com.au/)
     14Copyright 2014-2016 OM4 (email: plugins@om4.com.au    web: https://om4.io/)
    1515
    1616This program is free software; you can redistribute it and/or modify
     
    6767        $classes    = explode( ' ', $atts['class'] );
    6868        $classes    = array_map( 'sanitize_html_class', $classes );
    69         $class_html = ' class="' . implode( $classes, ' ' ) . '"';
     69        $class_html = ' class="' . implode( ' ', $classes ) . '"';
    7070    }
    7171
  • log-out-shortcode/trunk/readme.txt

    r2088897 r2374943  
    33Contributors: jamescollins
    44Requires at least: 3.9
    5 Tested up to: 5.2
    6 Stable tag: 1.0.6
     5Tested up to: 5.5
     6Stable tag: 1.0.7
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6363== Changelog ==
    6464
     65= 1.0.7 =
     66* Mark WP 5.5 compatible
     67
    6568= 1.0.6 =
    6669* Mark WP 5.2 compatible
Note: See TracChangeset for help on using the changeset viewer.