aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-22 00:05:59 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-22 00:05:59 +0000
commitea2e005d0fe64515ea099f31fe1724de0ebff542 (patch)
tree10e031478053d419bb2e2c16c3bea161474f6d70
parentf650e2c768fac908e55237f094c2d6391c47f8bf (diff)
downloadelgg-ea2e005d0fe64515ea099f31fe1724de0ebff542.tar.gz
elgg-ea2e005d0fe64515ea099f31fe1724de0ebff542.tar.bz2
Cleaned up core/dashboard/blurb to take advantage of the new <div> wrapper around output/longtext
git-svn-id: http://code.elgg.org/elgg/trunk@8392 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r--views/default/core/dashboard/blurb.php15
1 files changed, 9 insertions, 6 deletions
diff --git a/views/default/core/dashboard/blurb.php b/views/default/core/dashboard/blurb.php
index 91a7fb4c5..0c4e3947a 100644
--- a/views/default/core/dashboard/blurb.php
+++ b/views/default/core/dashboard/blurb.php
@@ -5,10 +5,13 @@
*/
?>
-<div class="elgg-col elgg-col-2of3" id="dashboard-info">
- <div class="elgg-inner pas mhs mbl">
- <p>
- <?php echo elgg_echo("dashboard:nowidgets"); ?>
- </p>
- </div>
+<div class="elgg-col elgg-col-2of3">
+<?php
+ echo elgg_view('output/longtext', array(
+ 'id' => 'dashboard-info',
+ 'class' => 'elgg-inner pas mhs mbl',
+ 'value' => elgg_echo("dashboard:nowidgets"),
+ ));
+
+?>
</div> \ No newline at end of file