Skip to content

Commit

Permalink
fixed company name issue
Browse files Browse the repository at this point in the history
  • Loading branch information
timoj committed Sep 7, 2018
1 parent 60aacbb commit 3b0507a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion includes/wcwuunder-create.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function __construct()
$this->version_obj = array(
"product" => "Woocommerce extension",
"version" => array(
"build" => "2.4.5",
"build" => "2.4.6",
"plugin" => "2.0"),
"platform" => array(
"name" => "Woocommerce",
Expand Down Expand Up @@ -241,6 +241,7 @@ public function get_company_address()
$pickupAddress->setZipCode(get_option('wc_wuunder_company_postode'));
$pickupAddress->setPhoneNumber(get_option('wc_wuunder_company_phone'));
$pickupAddress->setCountry(get_option('wc_wuunder_company_country'));
$pickupAddress->setBusiness(get_option('wc_wuunder_company_name'));
if ($pickupAddress->validate()) {
return $pickupAddress;
} else {
Expand Down
4 changes: 2 additions & 2 deletions woocommerce-wuunder.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WooCommerce Wuunder
* Plugin URI: http://wearewuunder.com
* Description: Wuunder shipping plugin
* Version: 2.4.5
* Version: 2.4.6
* Author: Wuunder
* Author URI: http://wearewuunder.com
*/
Expand Down Expand Up @@ -51,7 +51,7 @@ class Woocommerce_Wuunder
public static $plugin_path;
public static $plugin_basename;

const VERSION = '2.4.5';
const VERSION = '2.4.6';

public function __construct()
{
Expand Down

0 comments on commit 3b0507a

Please sign in to comment.