diff options
author | Pete Harris <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-29 18:43:13 +0000 |
---|---|---|
committer | Pete Harris <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-29 18:43:13 +0000 |
commit | 4fa7aaa7e363514dc2def25cceafd8cf4333404c (patch) | |
tree | 0b6e31e52f017e962639860f38fd4ad7c595c1e7 /views/default/videolist | |
parent | dd489f623628930e527e8112142576bb0de24b57 (diff) | |
download | elgg-4fa7aaa7e363514dc2def25cceafd8cf4333404c.tar.gz elgg-4fa7aaa7e363514dc2def25cceafd8cf4333404c.tar.bz2 |
Added a basic edit view for videolist (form action/tokens needs fixing still)
Diffstat (limited to 'views/default/videolist')
-rw-r--r-- | views/default/videolist/groupprofile_videolist.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/default/videolist/groupprofile_videolist.php b/views/default/videolist/groupprofile_videolist.php index 2151a8f87..217eda53b 100644 --- a/views/default/videolist/groupprofile_videolist.php +++ b/views/default/videolist/groupprofile_videolist.php @@ -11,7 +11,7 @@ ?> <div id="filerepo_widget_layout"> -<h2><?php echo elgg_echo("videolist:group"); ?></h2> +<h3><?php echo elgg_echo("videolist:group"); ?></h3> <?php @@ -41,7 +41,7 @@ if ($videos) { echo "</div>"; } echo "<div class=\"filerepo_listview_date\"><p class=\"filerepo_timestamp\"><small>" . friendly_time($f->time_created) . "</small></p></div>"; - echo "</div><div class=\"clearfloat\" style=\"height:8px;\"></div>"; + echo "</div>"; } echo "</div>"; @@ -52,7 +52,7 @@ if ($videos) { echo "<div class=\"forum_latest\"><a href=\"{$users_file_url}\">" . elgg_echo("videolist:groupall") . "</a></div>"; } else { - echo "<div class=\"forum_latest\">" . elgg_echo("videolist:none") . "</div>"; + echo "<p class='margin_top'>" . elgg_echo("videolist:none") . "</p>"; } ?> |