From 5169693f573b482e83f110e79ce1ce17cfe566ad Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Mon, 3 Jul 2023 08:30:13 -0400 Subject: [PATCH] Fix issue processwire/processwire-issues#1776 --- wire/modules/Session/SessionHandlerDB/ProcessSessionDB.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wire/modules/Session/SessionHandlerDB/ProcessSessionDB.module b/wire/modules/Session/SessionHandlerDB/ProcessSessionDB.module index 3e1c3fdc..da5f5f19 100644 --- a/wire/modules/Session/SessionHandlerDB/ProcessSessionDB.module +++ b/wire/modules/Session/SessionHandlerDB/ProcessSessionDB.module @@ -95,6 +95,7 @@ class ProcessSessionDB extends Process { /** @var MarkupAdminDataTable $table */ $table = $modules->get('MarkupAdminDataTable'); + $table->setSortable(false); $header = array( $this->_('Time'), $this->_('User'), @@ -175,4 +176,3 @@ class ProcessSessionDB extends Process { return $form->render(); } } -