Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: rickmutt
Tags: waiting room, traffic management, queue management, ecommerce, CrowdHandler,
Tested up to: 6.1.1
Stable tag: 1.1.10
Stable tag: 1.1.11
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down
4 changes: 2 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crowdhandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Plugin Name: CrowdHandler virtual waiting room
* Plugin URI: https://signup.crowdhandler.com/?utm_source=WordPress&utm_medium=Plugin_Dir
* Description: During periods of heavy traffic, our queue management solution helps safeguard your website from crashing and protects your sales.
* Version: 1.1.10
* Version: 1.1.11
* Author: CROWDHANDLER LTD
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
Expand All @@ -38,7 +38,7 @@
* Start at version 0.1.0 and use SemVer - https://semver.org
* Rename this for your plugin and update it as you release new versions.
*/
define('CROWDHANDLER_VERSION', '1.1.10');
define('CROWDHANDLER_VERSION', '1.1.11');

/**
* The code that runs during plugin activation.
Expand Down
2 changes: 1 addition & 1 deletion includes/class-crowdhandler-diagnostics.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function addCHDiagnostics($headers)
$isEnabled = (isset($this->options['crowdhandler_settings_field_is_enabled'])) ? '1' : '0';
$timestamp = new DateTime();
$formatedTime = $timestamp->format(DateTime::ISO8601);
$headers['x-crowdhandler-info'] = $this->options['crowdhandler_settings_field_public_key'] . '::' . $indexOverride . '::' . $isEnabled . '::' . $formatedTime;
$headers['x-crowdhandler-info'] = CROWDHANDLER_VERSION . '::' . $this->options['crowdhandler_settings_field_public_key'] . '::' . $indexOverride . '::' . $isEnabled . '::' . $formatedTime;
}
return $headers;
}
Expand Down