diff --git a/app/Controllers/BaseController.php b/app/Controllers/BaseController.php
index 7ad8bd97be..69e63c432c 100644
--- a/app/Controllers/BaseController.php
+++ b/app/Controllers/BaseController.php
@@ -230,6 +230,18 @@ public function autoLayout($enable = null)
return $this->autoLayout;
}
+ /**
+ * Return the current called action
+ *
+ * NOTE: this information is available after Controller initialization.
+ *
+ * @return string
+ */
+ public function getAction()
+ {
+ return $this->action;
+ }
+
/**
* Return the current Theme.
*
diff --git a/app/Middleware/VerifyCsrfToken.php b/app/Middleware/VerifyCsrfToken.php
index 40ec398d52..e92cbef8cd 100644
--- a/app/Middleware/VerifyCsrfToken.php
+++ b/app/Middleware/VerifyCsrfToken.php
@@ -14,5 +14,6 @@ class VerifyCsrfToken extends BaseVerifier
*/
protected $except = array(
'admin/files/connector',
+ 'livechat/*',
);
}
diff --git a/app/Platform/Bootstrap.php b/app/Platform/Bootstrap.php
index 64089e223a..d947121367 100644
--- a/app/Platform/Bootstrap.php
+++ b/app/Platform/Bootstrap.php
@@ -14,7 +14,7 @@
// Define The Application Version
//--------------------------------------------------------------------------
-define('VERSION', '4.0.79');
+define('VERSION', '4.0.80');
//--------------------------------------------------------------------------
// Set PHP Error Reporting Options
diff --git a/modules/Platform/Notifications/AccountActivation.php b/modules/Platform/Notifications/AccountActivation.php
index 567fc76011..82ade4476f 100644
--- a/modules/Platform/Notifications/AccountActivation.php
+++ b/modules/Platform/Notifications/AccountActivation.php
@@ -6,7 +6,7 @@
use Nova\Notifications\Notification;
use Nova\Notifications\Messages\MailMessage;
use Nova\Queue\ShouldQueueInterface;
-use Nova\Support\Facades\Config
+use Nova\Support\Facades\Config;
class AccountActivation extends Notification implements ShouldQueueInterface
diff --git a/modules/Roles/Views/Admin/Roles/Index.php b/modules/Roles/Views/Admin/Roles/Index.php
index 09711c6f7e..c44f058a4c 100644
--- a/modules/Roles/Views/Admin/Roles/Index.php
+++ b/modules/Roles/Views/Admin/Roles/Index.php
@@ -25,7 +25,7 @@
-