aboutsummaryrefslogtreecommitdiffstats
path: root/mod/editblock.php
diff options
context:
space:
mode:
authorChristian Vogeley <christian.vogeley@hotmail.de>2014-01-12 02:29:03 +0100
committerChristian Vogeley <christian.vogeley@hotmail.de>2014-01-12 02:29:03 +0100
commit325c5e4e7650329a42f61e9180fe986ef63671b5 (patch)
tree2bb1cb7b53cff6598fc27811019808ab37898e96 /mod/editblock.php
parentb5fbee67b14e32c85f1548ac1ce7a8cf7f32df2d (diff)
downloadvolse-hubzilla-325c5e4e7650329a42f61e9180fe986ef63671b5.tar.gz
volse-hubzilla-325c5e4e7650329a42f61e9180fe986ef63671b5.tar.bz2
volse-hubzilla-325c5e4e7650329a42f61e9180fe986ef63671b5.zip
delete confirmation popup for blocks and layouts
Diffstat (limited to 'mod/editblock.php')
-rw-r--r--mod/editblock.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/editblock.php b/mod/editblock.php
index 32ad3de2c..dcb4b42a7 100644
--- a/mod/editblock.php
+++ b/mod/editblock.php
@@ -92,7 +92,8 @@ function editblock_content(&$a) {
'$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
'$ispublic' => '&nbsp;', // t('Visible to <strong>everybody</strong>'),
'$geotag' => $geotag,
- '$nickname' => $a->user['nickname']
+ '$nickname' => $a->user['nickname'],
+ '$confirmdelete' => t('Delete block?')
));
@@ -159,7 +160,7 @@ function editblock_content(&$a) {
$ob = get_observer_hash();
if(($itm[0]['author_xchan'] === $ob) || ($itm[0]['owner_xchan'] === $ob))
- $o .= '<br /><br /><a href="item/drop/' . $itm[0]['id'] . '" >' . t('Delete Block') . '</a><br />';
+ $o .= '<br /><br /><a class="block-delete-link" href="item/drop/' . $itm[0]['id'] . '" >' . t('Delete Block') . '</a><br />';
return $o;