Skip to content

Commit

Permalink
- Fixed: BuddyPress warning
Browse files Browse the repository at this point in the history
- New: Ubermenu Integration
New version
  • Loading branch information
igmoweb committed Apr 8, 2016
1 parent 76ca719 commit 919cd03
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 16 deletions.
7 changes: 0 additions & 7 deletions admin/cloner-admin-clone-site.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ class WPMUDEV_Cloner_Admin_Clone_Site {
*/
private function __construct() {

if ( ! is_super_admin() )
return;

$this->plugin_slug = 'cloner';

// Add the options page and menu item.
Expand All @@ -58,10 +55,6 @@ private function __construct() {
*/
public static function get_instance() {

if ( ! is_super_admin() ) {
return false;
}

// If the single instance hasn't been set, set it now.
if ( null == self::$instance )
self::$instance = new self;
Expand Down
7 changes: 0 additions & 7 deletions admin/cloner-admin-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ class WPMUDEV_Cloner_Admin_Settings {
*/
private function __construct() {

if ( ! is_super_admin() )
return;

$this->plugin_slug = 'cloner';

// Add the options page and menu item.
Expand All @@ -57,10 +54,6 @@ private function __construct() {
*/
public static function get_instance() {

if ( ! is_super_admin() ) {
return false;
}

// If the single instance hasn't been set, set it now.
if ( null == self::$instance )
self::$instance = new self;
Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ Change Log:
----------------------------------------------------------------------
----------------------------------------------------------------------

1.7.2 - 2016-04-08
----------------------------------------------------------------------
- Fixed: BuddyPress warning
- New: Ubermenu Integration

1.7.1 - 2015-08-19
----------------------------------------------------------------------
- Fixed: Wrong URLs when cloning sites in a subfolder installation
Expand Down
4 changes: 2 additions & 2 deletions cloner.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Description: Clone sites in a network installation
Author: WPMU DEV
Author URI: http://premium.wpmudev.org/
Version: 1.7.1
Version: 1.7.2
Network: true
Text Domain: wpmudev-cloner
Domain Path: lang
Expand Down Expand Up @@ -87,7 +87,7 @@ private function set_constants() {
define( 'WPMUDEV_COPIER_LANG_DOMAIN', 'wpmudev-cloner' );

if ( ! defined( 'WPMUDEV_CLONER_VERSION' ) )
define( 'WPMUDEV_CLONER_VERSION', '1.7.1' );
define( 'WPMUDEV_CLONER_VERSION', '1.7.2' );
}

private function includes() {
Expand Down

0 comments on commit 919cd03

Please sign in to comment.