aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--views/default/tidypics/css.php2
-rw-r--r--views/default/tidypics/tagging.php7
2 files changed, 6 insertions, 3 deletions
diff --git a/views/default/tidypics/css.php b/views/default/tidypics/css.php
index a614705bf..b65d73789 100644
--- a/views/default/tidypics/css.php
+++ b/views/default/tidypics/css.php
@@ -220,7 +220,7 @@ overflow:hidden;
-moz-border-radius: 8px;
}
-#tidypics_popup_header {
+.tidypics_popup_header {
width:100%;
margin-bottom:10px;
}
diff --git a/views/default/tidypics/tagging.php b/views/default/tidypics/tagging.php
index 1d307df08..5ba698d6d 100644
--- a/views/default/tidypics/tagging.php
+++ b/views/default/tidypics/tagging.php
@@ -33,10 +33,13 @@
<div id='tidypics_tag_instruct_button_div'><button class='submit_button' id='tidypics_tag_instruct_button' onclick='stopTagging()'><?php echo elgg_echo('tidypics:finish_tagging'); ?></button></div>
</div>
<div id="tidypics_tag_menu" class="tidypics_popup">
- <div id='tidypics_popup_header'><h3><?php echo elgg_echo('tidypics:tagthisphoto'); ?></h3></div>
+ <div class='tidypics_popup_header'><h3><?php echo elgg_echo('tidypics:tagthisphoto'); ?></h3></div>
<?php
if ($viewer) {
+
+ tp_get_tag_list($viewer);
+
$friends = get_entities_from_relationship('friend', $viewer->getGUID(), false, 'user', '', 0, 'time_created desc', 1000);
if ($friends) {
@@ -71,7 +74,7 @@
?>
</div>
<div id="tidypics_delete_tag_menu" class="tidypics_popup">
-<div id='tidypics_popup_header'><h3><?php echo elgg_echo('tidypics:deltag_title'); ?></h3></div>
+<div class='tidypics_popup_header'><h3><?php echo elgg_echo('tidypics:deltag_title'); ?></h3></div>
<?php
if ($tag_info) {
$content = "<input type='hidden' name='image_guid' value='{$image->guid}' />";