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() function getInstructions()
{ {
return _('You are about to permanently delete a notice. ' . 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() function title()
@ -104,22 +104,22 @@ class DeletenoticeAction extends DeleteAction
function showContent() function showContent()
{ {
$this->elementStart('form', array('id' => 'notice_delete_form', $this->elementStart('form', array('id' => 'notice_delete_form',
'method' => 'post', 'method' => 'post',
'action' => common_local_url('deletenotice'))); 'action' => common_local_url('deletenotice')));
$this->hidden('token', common_session_token()); $this->hidden('token', common_session_token());
$this->hidden('notice', $this->trimmed('notice')); $this->hidden('notice', $this->trimmed('notice'));
$this->elementStart('p'); $this->elementStart('p');
$this->element('span', array('id' => 'confirmation_text'), $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', $this->element('input', array('id' => 'submit_no',
'name' => 'submit', 'name' => 'submit',
'type' => 'submit', 'type' => 'submit',
'value' => _('No'))); 'value' => _('No')));
$this->element('input', array('id' => 'submit_yes', $this->element('input', array('id' => 'submit_yes',
'name' => 'submit', 'name' => 'submit',
'type' => 'submit', 'type' => 'submit',
'value' => _('Yes'))); 'value' => _('Yes')));
$this->elementEnd('p'); $this->elementEnd('p');
$this->elementEnd('form'); $this->elementEnd('form');
} }
@ -131,7 +131,7 @@ class DeletenoticeAction extends DeleteAction
if (!$token || $token != common_session_token()) { if (!$token || $token != common_session_token()) {
$this->showForm(_('There was a problem with your session token. ' . $this->showForm(_('There was a problem with your session token. ' .
' Try again, please.')); ' Try again, please.'));
return; return;
} }