From eb0efc0d5c466ea82fefd7c1dcf7a66210e6930e Mon Sep 17 00:00:00 2001 From: bergware Date: Fri, 27 Oct 2023 15:13:38 +0200 Subject: [PATCH] Update SysDriversHelpers.php --- emhttp/plugins/dynamix/include/SysDriversHelpers.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/emhttp/plugins/dynamix/include/SysDriversHelpers.php b/emhttp/plugins/dynamix/include/SysDriversHelpers.php index 37a8ae11e..8374a1551 100644 --- a/emhttp/plugins/dynamix/include/SysDriversHelpers.php +++ b/emhttp/plugins/dynamix/include/SysDriversHelpers.php @@ -94,7 +94,6 @@ function getmodules($name) { $dir = str_replace("drivers/", "", $file); $state = ($state=="Inuse") ? "Kernel - Inuse" : "Kernel"; } - $description = $desc ? substr($desc,0,60) : ""; $arrModules[$modname] = [ 'modname' => $modname, 'dependacy' => $depends, @@ -107,7 +106,7 @@ function getmodules($name) { 'type' => $dir, 'support' => $support, 'supporturl' => $supporturl, - 'description' => $description + 'description' => $desc ]; }