From cc95163064084712e48ede759339df75b6eb2284 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20Garci=CC=81a=20de=20La=20Fuente?= Date: Tue, 11 Mar 2014 13:20:32 +0100 Subject: [PATCH] Added missing preview column for donations module --- htdocs/admin/dons.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/htdocs/admin/dons.php b/htdocs/admin/dons.php index c350cea531b..c6e42a0f12d 100644 --- a/htdocs/admin/dons.php +++ b/htdocs/admin/dons.php @@ -155,6 +155,7 @@ print ''.$langs->trans("Description").''; print ''.$langs->trans("Activated").''; print ''.$langs->trans("Default").''; print ''.$langs->trans("ShortInfo").''; +print ''.$langs->trans("Preview").''; print "\n"; clearstatcache(); @@ -233,10 +234,14 @@ if (is_resource($handle)) $htmltooltip.='

'.$langs->trans("FeaturesSupported").':'; $htmltooltip.='
'.$langs->trans("Logo").': '.yn($module->option_logo,1,1); $htmltooltip.='
'.$langs->trans("MultiLanguage").': '.yn($module->option_multilang,1,1); - $text=''.img_object($langs->trans("Preview"),'generic').''; print ''; - print $form->textwithpicto('   '.$text,$htmltooltip,-1,0); + print $form->textwithpicto('',$htmltooltip,-1,0); print ''; + + // Preview + print ''; + print ''.img_object($langs->trans("Preview"),'generic').''; + print ''; print "\n"; }