Merge branch 'ent-4267-edicion-text-informes' into 'develop'

Solved wrong variable rewriting

See merge request artica/pandorafms!2553
This commit is contained in:
Daniel Rodriguez 2019-07-16 10:10:53 +02:00
commit e69024f4e2
1 changed files with 4 additions and 1 deletions

View File

@ -853,7 +853,10 @@ $class = 'databox filters';
}
?>
<?php
$text = __('This type of report brings a lot of data loading, it is recommended to use it for scheduled reports and not for real-time view.');
if (!isset($text)) {
$text = __('This type of report brings a lot of data loading, it is recommended to use it for scheduled reports and not for real-time view.');
}
echo '<a id="log_help_tip" style="visibility: hidden;" href="javascript:" class="tip" >'.html_print_image('images/tip.png', true, ['title' => $text]).'</a>';
?>
</td>