Champ vide

This commit is contained in:
Fred Tempez 2020-08-19 17:46:39 +02:00
parent 29a4193450
commit 540ec4a796
1 changed files with 7 additions and 5 deletions

View File

@ -25,12 +25,14 @@
</div>
<div class="col12">
<div class="block">
<h4><?php echo $module::$resultTitle; ?></h4>
<?php if ($module::$resultList)
echo '<p>'.$module::$resultList.'</p>';
<?php if ( $module::$resultTitle )
echo $module::$resultTitle; ?></h4>
<?php if ($module::$resultList )
echo '<p>'.$module::$resultList.'</p>';
?>
<?php if ($module::$resultError )
echo '<p>'.$module::$resultError.'</p>';
?>
<?php if ($module::$resultError)
echo '<p>'.$module::$resultError.'</p>'; ?>
</div>
</div>
<?php echo template::formClose(); ?>