Add user invitations

This commit is contained in:
Frederic Guillot
2017-01-22 22:38:00 -05:00
parent 2f43d365a0
commit 10d96bfd66
20 changed files with 349 additions and 19 deletions

View File

@@ -29,12 +29,12 @@ class AppHelper extends Base
*
* @access public
* @param string $param
* @param mixed $default_value
* @param mixed $default
* @return mixed
*/
public function config($param, $default_value = '')
public function config($param, $default = '')
{
return $this->configModel->get($param, $default_value);
return $this->configModel->get($param, $default);
}
/**