diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2014-09-16 09:34:13 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2014-09-16 09:34:13 +0000 |
commit | 9a041dbac782566ff5a7ddb1f472e587cd6663f2 (patch) | |
tree | 5754879e041bb7e226d1f1df7e1d3e6789b2e3c0 /h-source/Application/Include/languages.php | |
parent | 11972639df8315753123ebccdadee1f596807ad0 (diff) |
Enabled SSL
Diffstat (limited to 'h-source/Application/Include/languages.php')
-rw-r--r-- | h-source/Application/Include/languages.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/h-source/Application/Include/languages.php b/h-source/Application/Include/languages.php index 6d86e36..c0f127f 100644 --- a/h-source/Application/Include/languages.php +++ b/h-source/Application/Include/languages.php @@ -2307,12 +2307,12 @@ class Go public static function toHardwareType($type) { - return "http://".DOMAIN_NAME."/".Hardware::getControllerFromType($type)."/catalogue/".Lang::$current; + return Url::getRoot().Hardware::getControllerFromType($type)."/catalogue/".Lang::$current; } public static function toHardwareInsert($type) { - return "http://".DOMAIN_NAME."/".Hardware::getControllerFromType($type)."/insert/".Lang::$current; + return Url::getRoot().Hardware::getControllerFromType($type)."/insert/".Lang::$current; } //go to the page of one device from the id of that device |