diff options
author | cash <cash.costello@gmail.com> | 2011-10-27 17:37:25 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-10-27 17:37:25 -0400 |
commit | b85851c3db8e9cd9c7bfd47a4db26c5c55ddca3b (patch) | |
tree | e7112c45aec02728f7d686301eaed09eb42ed389 /engine/lib/views.php | |
parent | aee0471eede56d2cee19602f13943deec7e4f7e5 (diff) | |
download | elgg-b85851c3db8e9cd9c7bfd47a4db26c5c55ddca3b.tar.gz elgg-b85851c3db8e9cd9c7bfd47a4db26c5c55ddca3b.tar.bz2 |
Fixes #2937 added .elgg-module-front
Diffstat (limited to 'engine/lib/views.php')
-rw-r--r-- | engine/lib/views.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/views.php b/engine/lib/views.php index 89ed98bdc..070b59e37 100644 --- a/engine/lib/views.php +++ b/engine/lib/views.php @@ -1196,7 +1196,7 @@ function elgg_view_image_block($image, $body, $vars = array()) { * @since 1.8.0 */ function elgg_view_module($type, $title, $body, $vars = array()) { - $vars['class'] .= " elgg-module-$type"; //@todo this will probably cause errors? + $vars['class'] .= " elgg-module-$type"; $vars['title'] = $title; $vars['body'] = $body; return elgg_view('page/components/module', $vars); |