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' => ' ', // t('Visible to everybody'),
'$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 .= '
' . t('Delete Block') . '
';
+ $o .= '
' . t('Delete Block') . '
';
return $o;
diff --git a/mod/editlayout.php b/mod/editlayout.php
index 86de0e676..838a219c9 100644
--- a/mod/editlayout.php
+++ b/mod/editlayout.php
@@ -78,7 +78,8 @@ function editlayout_content(&$a) {
'$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'),
'$ispublic' => ' ', // t('Visible to everybody'),
'$geotag' => $geotag,
- '$nickname' => $a->user['nickname']
+ '$nickname' => $a->user['nickname'],
+ '$confirmdelete' => t('Delete layout?')
));
@@ -143,7 +144,7 @@ function editlayout_content(&$a) {
$ob = get_observer_hash();
if(($itm[0]['author_xchan'] === $ob) || ($itm[0]['owner_xchan'] === $ob))
- $o .= '
' . t('Delete Layout') . '
';
+ $o .= '
' . t('Delete Layout') . '
';
return $o;
diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl
index 37fa3d069..687ad7302 100755
--- a/view/tpl/jot-header.tpl
+++ b/view/tpl/jot-header.tpl
@@ -307,7 +307,7 @@ function enableOnUser(){