From fea2b081f9b2e91a6366c1d98d41f9dd125122f7 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 4 Feb 2017 14:17:55 +0100 Subject: [PATCH] Fix: The long description feature will be available with 6.0. Large content creates problem with tooltip. --- htdocs/admin/modules.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/htdocs/admin/modules.php b/htdocs/admin/modules.php index ad33b4ce619..341cdd00ebc 100644 --- a/htdocs/admin/modules.php +++ b/htdocs/admin/modules.php @@ -497,9 +497,10 @@ if ($mode != 'marketplace') print ''; $text=''; - if ($objMod->getDescLong()) $text.='
'.$objMod->getDesc().'

'.$objMod->getDescLong().'
'; - else $text.='
'.$objMod->getDesc().'

'; - + //if ($objMod->getDescLong()) $text.='
'.$objMod->getDesc().'

'.$objMod->getDescLong().'
'; + //else $text.='
'.$objMod->getDesc().'

'; + $text.='
'.$objMod->getDesc().'

'; + $textexternal=''; $imginfo="info"; if ($objMod->isCoreOrExternalModule() == 'external')