Changeset 1200431
- Timestamp:
- 07/16/2015 07:39:07 PM (11 years ago)
- Location:
- reuters-direct
- Files:
-
- 6 edited
- 1 copied
-
tags/2.4.3 (copied) (copied from reuters-direct/trunk)
-
tags/2.4.3/includes/class-reuters-direct.php (modified) (3 diffs)
-
tags/2.4.3/readme.txt (modified) (3 diffs)
-
tags/2.4.3/reuters-direct.php (modified) (2 diffs)
-
trunk/includes/class-reuters-direct.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/reuters-direct.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
reuters-direct/tags/2.4.3/includes/class-reuters-direct.php
r1165251 r1200431 36 36 * @return void 37 37 */ 38 public function __construct ( $file = '', $version = '2.4. 2' ) {38 public function __construct ( $file = '', $version = '2.4.3' ) { 39 39 $this->_version = $version; 40 40 $this->_token = 'Reuters_Direct'; … … 68 68 * @return Main Reuters_Direct instance 69 69 */ 70 public static function instance ( $file = '', $version = '2.4. 2' ) {70 public static function instance ( $file = '', $version = '2.4.3' ) { 71 71 if ( is_null( self::$_instance ) ) { 72 72 self::$_instance = new self( $file, $version ); … … 266 266 $channel_alias = $channel_data[0]; 267 267 $channel_type = $channel_data[1]; 268 $channel_name = $channel_data[2];268 $channel_name = str_replace(' ', '', $channel_data[2]); 269 269 270 270 if($channel_type == 'OLR') -
reuters-direct/tags/2.4.3/readme.txt
r1170460 r1200431 5 5 Requires at least: 3.8 6 6 Tested up to: 4.2.2 7 Stable tag: 2.4. 27 Stable tag: 2.4.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 102 102 == Changelog == 103 103 104 = 2.4.3 = 105 * Fixed image directory naming. 106 104 107 = 2.4.2 = 105 108 * Fixed duplicate image bug. … … 110 113 == Upgrade notice == 111 114 112 = 2.4. 2=113 * Performance upgrade & minor bug fixes done.115 = 2.4.3 = 116 * Minor bug fixes done. 114 117 -
reuters-direct/tags/2.4.3/reuters-direct.php
r1165251 r1200431 2 2 /* 3 3 * Plugin Name: Reuters WordPress Direct 4 * Version: 2.4. 24 * Version: 2.4.3 5 5 * Description: A full-featured news aggregator, powered by Reuters Connect: Web Services, which ingests Reuters news and picture content directly into a WordPress platform. 6 6 * Author: Reuters News Agency … … 17 17 18 18 function Reuters_Direct () { 19 $instance = Reuters_Direct::instance( __FILE__, '2.4. 2' );19 $instance = Reuters_Direct::instance( __FILE__, '2.4.3' ); 20 20 if( is_null( $instance->settings ) ) { 21 21 $instance->settings = Reuters_Direct_Settings::instance( $instance ); -
reuters-direct/trunk/includes/class-reuters-direct.php
r1165251 r1200431 36 36 * @return void 37 37 */ 38 public function __construct ( $file = '', $version = '2.4. 2' ) {38 public function __construct ( $file = '', $version = '2.4.3' ) { 39 39 $this->_version = $version; 40 40 $this->_token = 'Reuters_Direct'; … … 68 68 * @return Main Reuters_Direct instance 69 69 */ 70 public static function instance ( $file = '', $version = '2.4. 2' ) {70 public static function instance ( $file = '', $version = '2.4.3' ) { 71 71 if ( is_null( self::$_instance ) ) { 72 72 self::$_instance = new self( $file, $version ); … … 266 266 $channel_alias = $channel_data[0]; 267 267 $channel_type = $channel_data[1]; 268 $channel_name = $channel_data[2];268 $channel_name = str_replace(' ', '', $channel_data[2]); 269 269 270 270 if($channel_type == 'OLR') -
reuters-direct/trunk/readme.txt
r1170460 r1200431 5 5 Requires at least: 3.8 6 6 Tested up to: 4.2.2 7 Stable tag: 2.4. 27 Stable tag: 2.4.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 102 102 == Changelog == 103 103 104 = 2.4.3 = 105 * Fixed image directory naming. 106 104 107 = 2.4.2 = 105 108 * Fixed duplicate image bug. … … 110 113 == Upgrade notice == 111 114 112 = 2.4. 2=113 * Performance upgrade & minor bug fixes done.115 = 2.4.3 = 116 * Minor bug fixes done. 114 117 -
reuters-direct/trunk/reuters-direct.php
r1165251 r1200431 2 2 /* 3 3 * Plugin Name: Reuters WordPress Direct 4 * Version: 2.4. 24 * Version: 2.4.3 5 5 * Description: A full-featured news aggregator, powered by Reuters Connect: Web Services, which ingests Reuters news and picture content directly into a WordPress platform. 6 6 * Author: Reuters News Agency … … 17 17 18 18 function Reuters_Direct () { 19 $instance = Reuters_Direct::instance( __FILE__, '2.4. 2' );19 $instance = Reuters_Direct::instance( __FILE__, '2.4.3' ); 20 20 if( is_null( $instance->settings ) ) { 21 21 $instance->settings = Reuters_Direct_Settings::instance( $instance );
Note: See TracChangeset
for help on using the changeset viewer.