]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
whitespace in deletenotice.php
authorEvan Prodromou <evan@controlyourself.ca>
Sat, 24 Jan 2009 18:12:47 +0000 (19:12 +0100)
committerEvan Prodromou <evan@controlyourself.ca>
Sat, 24 Jan 2009 18:12:47 +0000 (19:12 +0100)
actions/deletenotice.php

index efef95441d2b970b2ea49f6d39d05948dcd0cf6d..d8bc5d0e0c9206816b3698f87d217bdb3e09f5dc 100644 (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;
         }