mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-05 16:42:53 +01:00
Fix codespell
This commit is contained in:
@@ -541,7 +541,7 @@ class Facture extends CommonInvoice
|
||||
|
||||
// Fields coming from GUI.
|
||||
// @TODO Value of template should be used as default value on the form on the GUI, and we should here always use the value from GUI
|
||||
// set by posted page wth $object->xxx = ... and this section should be removed.
|
||||
// set by posted page with $object->xxx = ... and this section should be removed.
|
||||
$this->fk_project = GETPOST('projectid', 'int') > 0 ? GETPOSTINT('projectid') : $_facrec->fk_project;
|
||||
$this->note_public = GETPOSTISSET('note_public') ? GETPOST('note_public', 'restricthtml') : $_facrec->note_public;
|
||||
$this->note_private = GETPOSTISSET('note_private') ? GETPOST('note_private', 'restricthtml') : $_facrec->note_private;
|
||||
|
||||
@@ -431,7 +431,7 @@ class FactureFournisseur extends CommonInvoice
|
||||
|
||||
// Fields coming from GUI
|
||||
// @TODO Value of template should be used as default value on the form on the GUI, and we should here always use the value from GUI
|
||||
// set by posted page wth $object->xxx = ... and this section should be removed.
|
||||
// set by posted page with $object->xxx = ... and this section should be removed.
|
||||
$this->fk_project = GETPOST('projectid', 'int') > 0 ? ((int) GETPOST('projectid', 'int')) : $_facrec->fk_project;
|
||||
$this->note_public = GETPOST('note_public', 'restricthtml') ? GETPOST('note_public', 'restricthtml') : $_facrec->note_public;
|
||||
$this->note_private = GETPOST('note_private', 'restricthtml') ? GETPOST('note_private', 'restricthtml') : $_facrec->note_private;
|
||||
|
||||
Reference in New Issue
Block a user