summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-24 19:12:47 +0100
committerEvan Prodromou <evan@controlyourself.ca>2009-01-24 19:12:47 +0100
commit1f4edd70cbe28783784c41eda6c93008bbf86a78 (patch)
treec693b1a634af571afda1cdebe6e9ec84692dff14 /actions
parent4c9f3297f26d638539caede727e35aa5b54174a1 (diff)
whitespace in deletenotice.php
Diffstat (limited to 'actions')
-rw-r--r--actions/deletenotice.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/actions/deletenotice.php b/actions/deletenotice.php
index efef95441..d8bc5d0e0 100644
--- a/actions/deletenotice.php
+++ b/actions/deletenotice.php
@@ -71,7 +71,7 @@ class DeletenoticeAction extends DeleteAction
function getInstructions()
{
return _('You are about to permanently delete a notice. ' .
- 'Once this is done, it cannot be undone.');
+ 'Once this is done, it cannot be undone.');
}
function title()
@@ -104,22 +104,22 @@ class DeletenoticeAction extends DeleteAction
function showContent()
{
$this->elementStart('form', array('id' => 'notice_delete_form',
- 'method' => 'post',
- 'action' => common_local_url('deletenotice')));
+ 'method' => 'post',
+ 'action' => common_local_url('deletenotice')));
$this->hidden('token', common_session_token());
$this->hidden('notice', $this->trimmed('notice'));
$this->elementStart('p');
$this->element('span', array('id' => 'confirmation_text'),
- _('Are you sure you want to delete this notice?'));
+ _('Are you sure you want to delete this notice?'));
$this->element('input', array('id' => 'submit_no',
- 'name' => 'submit',
- 'type' => 'submit',
- 'value' => _('No')));
+ 'name' => 'submit',
+ 'type' => 'submit',
+ 'value' => _('No')));
$this->element('input', array('id' => 'submit_yes',
- 'name' => 'submit',
- 'type' => 'submit',
- 'value' => _('Yes')));
+ 'name' => 'submit',
+ 'type' => 'submit',
+ 'value' => _('Yes')));
$this->elementEnd('p');
$this->elementEnd('form');
}
@@ -131,7 +131,7 @@ class DeletenoticeAction extends DeleteAction
if (!$token || $token != common_session_token()) {
$this->showForm(_('There was a problem with your session token. ' .
- ' Try again, please.'));
+ ' Try again, please.'));
return;
}