diff options
author | Simon Rettberg | 2017-04-19 23:51:19 +0200 |
---|---|---|
committer | Simon Rettberg | 2017-04-19 23:51:19 +0200 |
commit | ec0cf9c18fb02329cb476425ff59f41ed373d04c (patch) | |
tree | 832c7cb44d9c749aca060e9e5756f2944ea51bbd /modules-available | |
parent | Merge branch 'master' of dnbd3:openslx-ng/slx-admin into location-info-panel (diff) | |
download | slx-admin-ec0cf9c18fb02329cb476425ff59f41ed373d04c.tar.gz slx-admin-ec0cf9c18fb02329cb476425ff59f41ed373d04c.tar.xz slx-admin-ec0cf9c18fb02329cb476425ff59f41ed373d04c.zip |
[locationinfo] Return untranslated tag of backend property if missing
Diffstat (limited to 'modules-available')
-rw-r--r-- | modules-available/locationinfo/page.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules-available/locationinfo/page.inc.php b/modules-available/locationinfo/page.inc.php index 263d07d0..a5d220ab 100644 --- a/modules-available/locationinfo/page.inc.php +++ b/modules-available/locationinfo/page.inc.php @@ -463,7 +463,7 @@ class Page_LocationInfo extends Page $counter = 0; foreach ($credentials as $cred) { $credential['uid'] = $counter; - $credential['name'] = Dictionary::translateFile($s, $cred->property); + $credential['name'] = Dictionary::translateFile($s, $cred->property, true); $credential['type'] = $cred->type; $credential['title'] = Dictionary::translateFile($s, $cred->property . "_title"); |