Skip to content

Commit

Permalink
Added missing $error and $errors variables
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosgdf committed Jul 18, 2014
1 parent 7e29889 commit cbd1010
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions htdocs/core/triggers/DolibarrTriggers.class.php
Expand Up @@ -55,6 +55,19 @@ abstract class DolibarrTriggers {
*/
public $family = '';

/**
* Error reported by the trigger
* @var string
* @deprecated Use $this->errors
*/
public $error = '';

/**
* Errors reported by the trigger
* @var array
*/
public $errors = array();

const VERSION_DEVELOPMENT = 'development';
const VERSION_EXPERIMENTAL = 'experimental';
const VERSION_DOLIBARR = 'dolibarr';
Expand Down

0 comments on commit cbd1010

Please sign in to comment.