Skip to content

Commit

Permalink
Merge branch 'develop' of [email protected]:Dolibarr/dolibarr.git into d…
Browse files Browse the repository at this point in the history
…evelop
  • Loading branch information
eldy committed Nov 12, 2024
2 parents 5312bd8 + 71a47c6 commit 7e95ab1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion htdocs/commande/note.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,13 @@


$cssclass = "titlefield";
include DOL_DOCUMENT_ROOT.'/core/tpl/notes.tpl.php';
$dirtpls = array_merge($conf->modules_parts['tpl'], array('/core/tpl'));
foreach ($dirtpls as $reldir) {
$res = @include dol_buildpath($reldir.'/notes.tpl.php');
if ($res) {
break;
}
}

print '</div>';

Expand Down

0 comments on commit 7e95ab1

Please sign in to comment.