Plugin Directory

Changeset 1441348


Ignore:
Timestamp:
06/21/2016 09:40:44 PM (10 years ago)
Author:
Space_Studio
Message:

Updated to version 8.9. Bug fixes

Location:
click-tweet/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • click-tweet/trunk/click-and-tweet.php

    r1392483 r1441348  
    44 * Plugin URI: http://spacestud.io
    55 * Description: Quote text in your WordPress posts for easy sharing on twitter.
    6  * Version: 0.8.8
     6 * Version: 0.8.9
    77 * Author: Space Studio
    88 * Author URI: http://spacestud.io
     
    7878     * @var array
    7979     */
    80     protected $inlinePositions = ['left' => 'Left', 'right' => 'Right'];
     80    protected $inlinePositions = array('left' => 'Left', 'right' => 'Right');
    8181
    8282    /**
     
    8585     * @var array
    8686     */
    87     protected $cardPositions = [
     87    protected $cardPositions = array(
    8888        'center-top' => 'Center Top',
    8989        'center-bottom' => 'Center Bottom',
     
    9494        'right-top' => 'Right Top',
    9595        'right-bottom' => 'Right Bottom'
    96     ];
     96    );
    9797
    9898    /**
     
    100100     * @var array
    101101     */
    102     protected $urlShorteners = [
     102    protected $urlShorteners = array(
    103103        'none' => 'None',
    104104        'wp' => 'WordPress',
    105105        'google' => 'Google',
    106106        'bitly' => 'Bitly'
    107     ];
     107    );
    108108
    109109    /**
     
    117117     * @var array
    118118     */
    119     protected $postTypes = ['post', 'page'];
     119    protected $postTypes = array('post', 'page');
    120120
    121121    /**
     
    123123     * @var array
    124124     */
    125     protected $adminPages = ['settings_page_click-and-tweet', 'post.php', 'post-new.php'];
     125    protected $adminPages = array('settings_page_click-and-tweet', 'post.php', 'post-new.php');
    126126
    127127    /**
  • click-tweet/trunk/readme.txt

    r1392483 r1441348  
    4747
    4848== Changelog ==
     49= 0.8.9 =
     50* Bug fixes
     51
    4952= 0.8.6 =
    5053* Optimized for WordPress 4.5
Note: See TracChangeset for help on using the changeset viewer.