diff options
author | Damien Zammit <damien@zamaudio.com> | 2021-08-10 19:16:48 +1000 |
---|---|---|
committer | Damien Zammit <damien@zamaudio.com> | 2021-08-10 19:48:07 +1000 |
commit | f17018962bfc6cc38a0b2ccc5f40a939f5fe49fa (patch) | |
tree | 2eb11843b882af0b7a81a3dd70fcad9806bf3ebb /h-source/Library/Helper/Popup.php | |
parent | 75cfe0492776b8e4ab89912918929f845c92f74c (diff) |
Use relative URLs instead of hardcoding domain
Diffstat (limited to 'h-source/Library/Helper/Popup.php')
-rwxr-xr-x | h-source/Library/Helper/Popup.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/h-source/Library/Helper/Popup.php b/h-source/Library/Helper/Popup.php index 18bb00d..43140fe 100755 --- a/h-source/Library/Helper/Popup.php +++ b/h-source/Library/Helper/Popup.php @@ -133,10 +133,10 @@ class Helper_Popup extends Helper_Html { $returnString .= "</div>\n"; } if (count($this->popupArray)>0) { - $returnString .= "<script type=\"text/javascript\" src=\"http://".DOMAIN_NAME."/Public/Js/DisplayTag.js\"></script>\n"; + $returnString .= "<script type=\"text/javascript\" src=\"/Public/Js/DisplayTag.js\"></script>\n"; } } return $returnString; } -}
\ No newline at end of file +} |