Add automatic action to send a task by email

This commit is contained in:
Frederic Guillot
2015-06-20 10:48:47 -04:00
parent 7056d14c95
commit cb0916d10e
15 changed files with 280 additions and 40 deletions

View File

@@ -88,13 +88,7 @@ class Url extends \Core\Base
*/
public function base()
{
$application_url = $this->config->get('application_url');
if (! empty($application_url)) {
return $application_url;
}
return $this->server();
return $this->config->get('application_url') ?: $this->server();
}
/**