aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-03 22:48:13 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-03 22:48:13 +0000
commit3c8c0584287e5e569879eebe5033610b6ad2fe44 (patch)
tree4788e8885d1c3ade71240a2faa9000a3142e65ca /views
parent4ae6d689578448a33024703c61bb17b5709fa0e5 (diff)
downloadelgg-3c8c0584287e5e569879eebe5033610b6ad2fe44.tar.gz
elgg-3c8c0584287e5e569879eebe5033610b6ad2fe44.tar.bz2
Changed widgets layout "box" parameter to "content" just like the other layouts
git-svn-id: http://code.elgg.org/elgg/trunk@8007 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views')
-rw-r--r--views/default/layout/shells/widgets.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/layout/shells/widgets.php b/views/default/layout/shells/widgets.php
index f6df67681..aa9fa2393 100644
--- a/views/default/layout/shells/widgets.php
+++ b/views/default/layout/shells/widgets.php
@@ -2,7 +2,7 @@
/**
* Elgg widgets layout
*
- * @uses $vars['box'] Optional display box at the top of layout
+ * @uses $vars['content'] Optional display box at the top of layout
* @uses $vars['num_columns'] Number of widget columns for this layout (3)
* @uses $vars['show_add_widgets'] Display the add widgets button and panel (true)
* @uses $vars['exact_match'] Widgets must match the current context (false)
@@ -33,7 +33,7 @@ if (elgg_can_edit_widget_layout($context)) {
echo elgg_view('layout/shells/widgets/add_panel', $params);
}
-echo $vars['box'];
+echo $vars['content'];
$widget_class = "elgg-col-1of{$num_columns}";
for ($column_index = 1; $column_index <= $num_columns; $column_index++) {