X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fprofileformaction.php;h=b5f2e5d2a31232c3773d193dc2e9b3818fad4bc9;hb=a9f4575d317e5358f61d47be5217699b0d5be155;hp=51c89a922ea9b57ac7ae73952b546b2c21a59b18;hpb=cd29d3d646379aa9a1352035973c8e379cc7f42b;p=quix0rs-gnu-social.git diff --git a/lib/profileformaction.php b/lib/profileformaction.php index 51c89a922e..b5f2e5d2a3 100644 --- a/lib/profileformaction.php +++ b/lib/profileformaction.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class ProfileFormAction extends RedirectingAction { var $profile = null; @@ -52,7 +51,6 @@ class ProfileFormAction extends RedirectingAction * * @return boolean success flag */ - function prepare($args) { parent::prepare($args); @@ -61,6 +59,7 @@ class ProfileFormAction extends RedirectingAction if (!common_logged_in()) { if ($_SERVER['REQUEST_METHOD'] == 'POST') { + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); } else { // Redirect to login. @@ -76,6 +75,7 @@ class ProfileFormAction extends RedirectingAction $id = $this->trimmed('profileid'); if (!$id) { + // TRANS: Client error displayed when trying to change user options without specifying a user to work on. $this->clientError(_('No profile specified.')); return false; } @@ -83,6 +83,7 @@ class ProfileFormAction extends RedirectingAction $this->profile = Profile::staticGet('id', $id); if (!$this->profile) { + // TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. $this->clientError(_('No profile with that ID.')); return false; } @@ -99,7 +100,6 @@ class ProfileFormAction extends RedirectingAction * * @return void */ - function handle($args) { parent::handle($args); @@ -117,9 +117,9 @@ class ProfileFormAction extends RedirectingAction * * @return void */ - function handlePost() { + // TRANS: Server error displayed when using an unimplemented method. $this->serverError(_("Unimplemented method.")); } }