summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-21 13:18:35 +0100
committerAndrew Dolgov <[email protected]>2006-05-21 13:18:35 +0100
commiteb4311d00fde9f38c2ee1d9b95a4baee6fed3b39 (patch)
tree1e99bd18046b24a9d9ea76f007e696bb5322a19a /functions.php
parentac2cc246fa4d8292325c2c0fffcb2f67355f5ad2 (diff)
getFeedCat respects NULL cat_id
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index 765ff8ce5..73ef85774 100644
--- a/functions.php
+++ b/functions.php
@@ -1652,7 +1652,7 @@
if (db_num_rows($result) == 1) {
return db_fetch_result($result, 0, "title");
} else {
- return "Unknown category ($id)";
+ return "Uncategorized";
}
} else {
return "getFeedCatTitle($id) failed";