aboutsummaryrefslogtreecommitdiffstats
path: root/langs.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'langs.inc.php')
-rw-r--r--langs.inc.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/langs.inc.php b/langs.inc.php
index ad1f34862..f81e000ba 100644
--- a/langs.inc.php
+++ b/langs.inc.php
@@ -155,7 +155,8 @@ function _t($s = null, $opt = null) {
else {
global $_t;
}
- return ($s == '' ? '-EMPTY-STRING-' : (array_key_exists($s, $_t) ? $_t[$s] : $s));
+
+ return ($s == '' ? '---' : (array_key_exists($s, $_t) ? $_t[$s] : $s));
}
function _e($s = null) {