diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-09-18 15:26:48 +0200 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-09-18 15:26:48 +0200 |
commit | 52ccc8e521d47713643f558daf93855a875a6c73 (patch) | |
tree | 5016273cf474327eae95c53ab2af642046c7f574 /plugins/Sample/hello.php | |
parent | edb411b4aeec6a19f5d127b619bdbe108b01f264 (diff) |
* update L10n
* remove superfluous whitespace
Diffstat (limited to 'plugins/Sample/hello.php')
-rw-r--r-- | plugins/Sample/hello.php | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/plugins/Sample/hello.php b/plugins/Sample/hello.php index dfbd0ad4f..a793ac6de 100644 --- a/plugins/Sample/hello.php +++ b/plugins/Sample/hello.php @@ -46,7 +46,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class HelloAction extends Action { var $user = null; @@ -67,7 +66,6 @@ class HelloAction extends Action * * @return boolean success flag */ - function prepare($args) { parent::prepare($args); @@ -93,7 +91,6 @@ class HelloAction extends Action * * @return void */ - function handle($args) { parent::handle($args); @@ -108,13 +105,12 @@ class HelloAction extends Action * * @return string Title of the page */ - function title() { if (empty($this->user)) { return _m('Hello'); } else { - return sprintf(_m('Hello, %s'), $this->user->nickname); + return sprintf(_m('Hello, %s!'), $this->user->nickname); } } @@ -130,7 +126,6 @@ class HelloAction extends Action * * @return void */ - function showContent() { if (empty($this->user)) { @@ -162,7 +157,6 @@ class HelloAction extends Action * * @return boolean is read only action? */ - function isReadOnly($args) { return false; |