aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2022-05-13 11:09:06 +0000
committerElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2022-05-13 11:09:06 +0000
commit779f2da25a832caaf64928b309368568c04e1f61 (patch)
tree84d49c6c5e717110253c6cccf3b370364c16e5df /lib
parent05f1863eb20070905b8604f218dcc79a0bf8c2f2 (diff)
update help url, fixes #1055
Closes #1055 Merge request studip/studip!624
Diffstat (limited to 'lib')
-rw-r--r--lib/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/functions.php b/lib/functions.php
index ae7307e..a74c8ec 100644
--- a/lib/functions.php
+++ b/lib/functions.php
@@ -1015,7 +1015,7 @@ function format_help_url($keyword)
preg_match('/^\d+/', $GLOBALS['SOFTWARE_VERSION'], $v);
$version = $v[0];
- $help_query = sprintf('https://hilfe.studip.de/help/%s.0/%s/%s',
+ $help_query = sprintf('https://hilfe.studip.de/help/%s/%s/%s',
$version, $lang, $keyword);
return $help_query;
}