Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
cheh committed Sep 3, 2015
2 parents 819a450 + 5fb4e36 commit de769eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ public function change_details_url(){
$plugins_string = '';

foreach ( $plugins as $plugin_key => $plugin_value ) {
if( strpos( $plugin_key, 'cherry-' ) !== false ){
$plugin_key = strtolower( $plugin_key );
if( strpos( $plugin_key, 'cherry' ) !== false ){
$plugins_string .= '"' . $plugin_value ->update ->slug . '" : "' . $plugin_value ->update ->url .'", ';
}
}
Expand Down
4 changes: 2 additions & 2 deletions cherry-social.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Cherry Social
* Plugin URI: http://www.cherryframework.com/
* Description: A social plugin for WordPress.
* Version: 1.0.2-beta
* Version: 1.0.2
* Author: Cherry Team
* Author URI: http://www.cherryframework.com/
* Text Domain: cherry-social
Expand Down Expand Up @@ -102,7 +102,7 @@ private function __construct() {
* @since 1.0.0
*/
public function constants() {
define( 'CHERRY_SOCIAL_VERSION', '1.0.2-beta' );
define( 'CHERRY_SOCIAL_VERSION', '1.0.2' );
define( 'CHERRY_SOCIAL_SLUG', basename( dirname( __FILE__ ) ) );
define( 'CHERRY_SOCIAL_DIR', trailingslashit( plugin_dir_path( __FILE__ ) ) );
define( 'CHERRY_SOCIAL_URI', trailingslashit( plugin_dir_url( __FILE__ ) ) );
Expand Down

0 comments on commit de769eb

Please sign in to comment.