aboutsummaryrefslogtreecommitdiff
path: root/h-source/admin/Library/Theme.php
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2021-08-10 19:16:48 +1000
committerDamien Zammit <damien@zamaudio.com>2021-08-10 19:48:07 +1000
commitf17018962bfc6cc38a0b2ccc5f40a939f5fe49fa (patch)
tree2eb11843b882af0b7a81a3dd70fcad9806bf3ebb /h-source/admin/Library/Theme.php
parent75cfe0492776b8e4ab89912918929f845c92f74c (diff)
Use relative URLs instead of hardcoding domain
Diffstat (limited to 'h-source/admin/Library/Theme.php')
-rwxr-xr-xh-source/admin/Library/Theme.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/h-source/admin/Library/Theme.php b/h-source/admin/Library/Theme.php
index 692697e..afa3660 100755
--- a/h-source/admin/Library/Theme.php
+++ b/h-source/admin/Library/Theme.php
@@ -22,8 +22,8 @@ class Theme {
function __construct($controller) {
$this->controller = $controller;
- $this->baseUrl = MOD_REWRITE_MODULE === true ? 'http://' . DOMAIN_NAME : 'http://' . DOMAIN_NAME . '/index.php';
- $this->baseUrlSrc = 'http://' . DOMAIN_NAME;
+ $this->baseUrl = MOD_REWRITE_MODULE === true ? '/admin' : '/admin/index.php';
+ $this->baseUrlSrc = '/admin';
}