Skip to content

Commit

Permalink
Merge pull request #984 from FHenry/3.4
Browse files Browse the repository at this point in the history
Fix [ bug #895 ] Description is lost when adding a new predefined
  • Loading branch information
eldy committed May 25, 2013
2 parents 7b13be4 + 8656a9f commit 982fec6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions htdocs/contrat/fiche.php
Expand Up @@ -433,7 +433,7 @@

$desc = $prod->description;
$desc.= $prod->description && GETPOST('desc') ? "\n" : "";
$desc.= GETPOST('desc');
$desc.= GETPOST('np_desc');
}
else
{
Expand Down Expand Up @@ -871,10 +871,10 @@

print '<tr><td>'.$langs->trans("NotePublic").'</td><td valign="top">';


$doleditor=new DolEditor('note_public', $note_public, '', '100', 'dolibarr_notes', 'In', 1, true, true, ROWS_3, 70);
print $doleditor->Create(1);


if (! $user->societe_id)
{
Expand Down

0 comments on commit 982fec6

Please sign in to comment.