summaryrefslogtreecommitdiff
path: root/include/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-10-06 17:47:19 +0400
committerAndrew Dolgov <[email protected]>2012-10-06 17:47:19 +0400
commitf99759dae4ce97b44da9da1edf03e4ac64085ae0 (patch)
tree20c76ebaeff684c017bffbd9f9e62517101f22cd /include/functions.php
parent5ba4ebc65e13ef78f1f7b0528681195d0fd88476 (diff)
getCategoryTitle: return translated Uncategorized (closes #506)
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php
index 75ffcc8bf..0156ddf9a 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -1378,7 +1378,7 @@
if (db_num_rows($result) == 1) {
return db_fetch_result($result, 0, "title");
} else {
- return "Uncategorized";
+ return __("Uncategorized");
}
}
}