2
0
forked from Wavyzz/dolibarr

Merge remote-tracking branch 'upstream/develop' into camelCaps

This commit is contained in:
Frédéric FRANCE
2018-08-28 09:34:53 +02:00
335 changed files with 3278 additions and 1248 deletions

View File

@@ -35,7 +35,10 @@ require_once DOL_DOCUMENT_ROOT .'/core/class/html.form.class.php';
*/
class FormMail extends Form
{
var $db;
/**
* @var DoliDB Database handler.
*/
public $db;
var $withform; // 1=Include HTML form tag and show submit button, 0=Do not include form tag and submit button, -1=Do not include form tag but include submit button
@@ -85,7 +88,10 @@ class FormMail extends Form
public $withtouser=array();
public $withtoccuser=array();
var $error;
/**
* @var string Error code (or message)
*/
public $error='';
public $lines_model;