Dokan – Best WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy - Version 3.0.15

Version Description

Download this release

Release Info

Developer tareq1988
Plugin Icon wp plugin Dokan – Best WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy
Version 3.0.15
Comparing to
See all releases

Code changes from version 3.0.14 to 3.0.15

CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
 
 
 
 
 
 
 
 
 
1
  ## [3.0.14](https://github.com/weDevsOfficial/dokan/compare/v3.0.13...v3.0.14) (2020-11-20)
2
 
3
 
1
+ ## [3.0.15](https://github.com/weDevsOfficial/dokan/compare/v3.0.14...v3.0.15) (2020-11-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * timezone mismatch ([6d14173](https://github.com/weDevsOfficial/dokan/commit/6d1417311e7efab85b0a3bc4d80d1614cf8835f5))
7
+
8
+
9
+
10
  ## [3.0.14](https://github.com/weDevsOfficial/dokan/compare/v3.0.13...v3.0.14) (2020-11-20)
11
 
12
 
dokan.php CHANGED
@@ -3,12 +3,12 @@
3
  * Plugin Name: Dokan
4
  * Plugin URI: https://wordpress.org/plugins/dokan-lite/
5
  * Description: An e-commerce marketplace plugin for WordPress. Powered by WooCommerce and weDevs.
6
- * Version: 3.0.14
7
  * Author: weDevs
8
  * Author URI: https://wedevs.com/
9
  * Text Domain: dokan-lite
10
  * WC requires at least: 3.0
11
- * WC tested up to: 4.4.1
12
  * Domain Path: /languages/
13
  * License: GPL2
14
  */
@@ -56,7 +56,7 @@ final class WeDevs_Dokan {
56
  *
57
  * @var string
58
  */
59
- public $version = '3.0.14';
60
 
61
  /**
62
  * Instance of self
3
  * Plugin Name: Dokan
4
  * Plugin URI: https://wordpress.org/plugins/dokan-lite/
5
  * Description: An e-commerce marketplace plugin for WordPress. Powered by WooCommerce and weDevs.
6
+ * Version: 3.0.15
7
  * Author: weDevs
8
  * Author URI: https://wedevs.com/
9
  * Text Domain: dokan-lite
10
  * WC requires at least: 3.0
11
+ * WC tested up to: 4.7.0
12
  * Domain Path: /languages/
13
  * License: GPL2
14
  */
56
  *
57
  * @var string
58
  */
59
+ public $version = '3.0.15';
60
 
61
  /**
62
  * Instance of self
includes/Admin/LimitedTimePromotion.php CHANGED
@@ -199,7 +199,7 @@ class LimitedTimePromotion {
199
  * @return string
200
  */
201
  private function get_current_time_est() {
202
- $dt = new \DateTime( current_time( 'mysql' ), new \DateTimeZone( 'UTC' ) );
203
  $dt->setTimezone( new \DateTimeZone( 'EST' ) );
204
 
205
  return $dt->format( 'Y-m-d H:i:s T' );
199
  * @return string
200
  */
201
  private function get_current_time_est() {
202
+ $dt = new \DateTime( 'now', new \DateTimeZone( 'UTC' ) );
203
  $dt->setTimezone( new \DateTimeZone( 'EST' ) );
204
 
205
  return $dt->format( 'Y-m-d H:i:s T' );
languages/dokan-lite.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Dokan 3.0.14\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
- "POT-Creation-Date: 2020-11-20 14:54:50+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
2
  # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Dokan 3.0.15\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
+ "POT-Creation-Date: 2020-11-21 16:13:13+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
readme.txt CHANGED
@@ -5,9 +5,9 @@ Tags: WooCommerce multivendor marketplace, multi vendor marketplace, multi selle
5
  Requires at least: 4.4
6
  Tested up to: 5.5.3
7
  WC requires at least: 3.0
8
- WC tested up to: 4.6
9
  Requires PHP: 5.6
10
- Stable tag: 3.0.14
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
@@ -291,6 +291,10 @@ A. Just install and activate the PRO version without deleting the free plugin. A
291
 
292
  == Changelog ==
293
 
 
 
 
 
294
  == v3.0.14 (November 20, 2020) ==
295
 
296
  - **fix** Vendor edit admin commission on decimal separator as comma
5
  Requires at least: 4.4
6
  Tested up to: 5.5.3
7
  WC requires at least: 3.0
8
+ WC tested up to: 4.7.0
9
  Requires PHP: 5.6
10
+ Stable tag: 3.0.15
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
291
 
292
  == Changelog ==
293
 
294
+ == v3.0.15 (November 21, 2020) ==
295
+
296
+ - **fix** updated codebase to fix timezone mismatch
297
+
298
  == v3.0.14 (November 20, 2020) ==
299
 
300
  - **fix** Vendor edit admin commission on decimal separator as comma
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitce9e59761870bbd95f5c8a9e410a1593::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit3eb04e1b985e1657f3a2cda029d85296::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitce9e59761870bbd95f5c8a9e410a1593
6
  {
7
  private static $loader;
8
 
@@ -22,15 +22,15 @@ class ComposerAutoloaderInitce9e59761870bbd95f5c8a9e410a1593
22
  return self::$loader;
23
  }
24
 
25
- spl_autoload_register(array('ComposerAutoloaderInitce9e59761870bbd95f5c8a9e410a1593', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
- spl_autoload_unregister(array('ComposerAutoloaderInitce9e59761870bbd95f5c8a9e410a1593', 'loadClassLoader'));
28
 
29
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
  if ($useStaticLoader) {
31
  require_once __DIR__ . '/autoload_static.php';
32
 
33
- call_user_func(\Composer\Autoload\ComposerStaticInitce9e59761870bbd95f5c8a9e410a1593::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit3eb04e1b985e1657f3a2cda029d85296
6
  {
7
  private static $loader;
8
 
22
  return self::$loader;
23
  }
24
 
25
+ spl_autoload_register(array('ComposerAutoloaderInit3eb04e1b985e1657f3a2cda029d85296', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
+ spl_autoload_unregister(array('ComposerAutoloaderInit3eb04e1b985e1657f3a2cda029d85296', 'loadClassLoader'));
28
 
29
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
  if ($useStaticLoader) {
31
  require_once __DIR__ . '/autoload_static.php';
32
 
33
+ call_user_func(\Composer\Autoload\ComposerStaticInit3eb04e1b985e1657f3a2cda029d85296::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInitce9e59761870bbd95f5c8a9e410a1593
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'W' =>
@@ -169,9 +169,9 @@ class ComposerStaticInitce9e59761870bbd95f5c8a9e410a1593
169
  public static function getInitializer(ClassLoader $loader)
170
  {
171
  return \Closure::bind(function () use ($loader) {
172
- $loader->prefixLengthsPsr4 = ComposerStaticInitce9e59761870bbd95f5c8a9e410a1593::$prefixLengthsPsr4;
173
- $loader->prefixDirsPsr4 = ComposerStaticInitce9e59761870bbd95f5c8a9e410a1593::$prefixDirsPsr4;
174
- $loader->classMap = ComposerStaticInitce9e59761870bbd95f5c8a9e410a1593::$classMap;
175
 
176
  }, null, ClassLoader::class);
177
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit3eb04e1b985e1657f3a2cda029d85296
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'W' =>
169
  public static function getInitializer(ClassLoader $loader)
170
  {
171
  return \Closure::bind(function () use ($loader) {
172
+ $loader->prefixLengthsPsr4 = ComposerStaticInit3eb04e1b985e1657f3a2cda029d85296::$prefixLengthsPsr4;
173
+ $loader->prefixDirsPsr4 = ComposerStaticInit3eb04e1b985e1657f3a2cda029d85296::$prefixDirsPsr4;
174
+ $loader->classMap = ComposerStaticInit3eb04e1b985e1657f3a2cda029d85296::$classMap;
175
 
176
  }, null, ClassLoader::class);
177
  }