]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Cleaned up core/dashboard/blurb to take advantage of the new <div> wrapper around...
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Tue, 22 Feb 2011 00:05:59 +0000 (00:05 +0000)
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Tue, 22 Feb 2011 00:05:59 +0000 (00:05 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@8392 36083f99-b078-4883-b0ff-0f9b5a30f544

views/default/core/dashboard/blurb.php

index 91a7fb4c5ac3e0d757f572ba75dc9b24f6606816..0c4e3947a8b6eef23e4f4add257d5843d0be1d85 100644 (file)
@@ -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