diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-19 18:31:02 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-19 18:31:02 +0000 |
commit | f8af9bb64c6150ac965a7e2655b4d90698b91fc2 (patch) | |
tree | 9b9045525866230b751ff1ca6ee02e9bf5e1281a | |
parent | fde18e8ea5d0eda4388a0085fd6656ea56d33af6 (diff) | |
download | elgg-f8af9bb64c6150ac965a7e2655b4d90698b91fc2.tar.gz elgg-f8af9bb64c6150ac965a7e2655b4d90698b91fc2.tar.bz2 |
Added a title to group forum topics. Fixes #603
git-svn-id: https://code.elgg.org/elgg/trunk@2831 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/groups/forum.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/groups/forum.php b/mod/groups/forum.php index 714b6cb8a..ce35e2135 100644 --- a/mod/groups/forum.php +++ b/mod/groups/forum.php @@ -21,6 +21,8 @@ $body = elgg_view_layout('two_column_left_sidebar',$area1, $area2);
+ $title = elgg_echo('item:object:groupforumtopic');
+
// Finally draw the page
page_draw($title, $body);
|