From c667ce609dc3c1f9f071e39293f8c176d3e1c5dc Mon Sep 17 00:00:00 2001 From: cash Date: Thu, 24 Feb 2011 01:27:47 +0000 Subject: Refs #2997 switching from title to text for menu items git-svn-id: http://code.elgg.org/elgg/trunk@8455 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/pages/lib/pages.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod/pages/lib/pages.php') diff --git a/mod/pages/lib/pages.php b/mod/pages/lib/pages.php index 72aad2aed..c9a1b27b6 100644 --- a/mod/pages/lib/pages.php +++ b/mod/pages/lib/pages.php @@ -80,7 +80,7 @@ function pages_register_navigation_tree($container) { foreach ($top_pages as $page) { elgg_register_menu_item('pages_nav', array( 'name' => $page->getGUID(), - 'title' => $page->title, + 'text' => $page->title, 'url' => $page->getURL(), )); @@ -98,7 +98,7 @@ function pages_register_navigation_tree($container) { foreach ($children as $child) { elgg_register_menu_item('pages_nav', array( 'name' => $child->getGUID(), - 'title' => $child->title, + 'text' => $child->title, 'url' => $child->getURL(), 'parent_name' => $parent->getGUID(), )); -- cgit v1.2.3