whitespace in deletenotice.php

This commit is contained in:
Evan Prodromou 2009-01-24 19:12:47 +01:00
parent 4c9f3297f2
commit 1f4edd70cb
1 changed files with 11 additions and 11 deletions

View File

@ -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;
}