1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

Ensure SITE_URL is always used

This commit is contained in:
Hillel Coren 2017-06-04 18:14:53 +03:00
parent 27ee08d541
commit 72cbea9a0c

View File

@ -13,7 +13,7 @@ class EntityPresenter extends Presenter
*/
public function url()
{
return url($this->path());
return SITE_URL . $this->path();
}
public function path()