Changeset 1441348
- Timestamp:
- 06/21/2016 09:40:44 PM (10 years ago)
- Location:
- click-tweet/trunk
- Files:
-
- 2 edited
-
click-and-tweet.php (modified) (7 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
click-tweet/trunk/click-and-tweet.php
r1392483 r1441348 4 4 * Plugin URI: http://spacestud.io 5 5 * Description: Quote text in your WordPress posts for easy sharing on twitter. 6 * Version: 0.8. 86 * Version: 0.8.9 7 7 * Author: Space Studio 8 8 * Author URI: http://spacestud.io … … 78 78 * @var array 79 79 */ 80 protected $inlinePositions = ['left' => 'Left', 'right' => 'Right'];80 protected $inlinePositions = array('left' => 'Left', 'right' => 'Right'); 81 81 82 82 /** … … 85 85 * @var array 86 86 */ 87 protected $cardPositions = [87 protected $cardPositions = array( 88 88 'center-top' => 'Center Top', 89 89 'center-bottom' => 'Center Bottom', … … 94 94 'right-top' => 'Right Top', 95 95 'right-bottom' => 'Right Bottom' 96 ];96 ); 97 97 98 98 /** … … 100 100 * @var array 101 101 */ 102 protected $urlShorteners = [102 protected $urlShorteners = array( 103 103 'none' => 'None', 104 104 'wp' => 'WordPress', 105 105 'google' => 'Google', 106 106 'bitly' => 'Bitly' 107 ];107 ); 108 108 109 109 /** … … 117 117 * @var array 118 118 */ 119 protected $postTypes = ['post', 'page'];119 protected $postTypes = array('post', 'page'); 120 120 121 121 /** … … 123 123 * @var array 124 124 */ 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'); 126 126 127 127 /** -
click-tweet/trunk/readme.txt
r1392483 r1441348 47 47 48 48 == Changelog == 49 = 0.8.9 = 50 * Bug fixes 51 49 52 = 0.8.6 = 50 53 * Optimized for WordPress 4.5
Note: See TracChangeset
for help on using the changeset viewer.