From 52600ce0b063e68e622b19699841e41b5ddbf2d1 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 20 May 2008 15:14:12 -0400 Subject: trim whitespace darcs-hash:20080520191412-84dde-a607dbe848279639630edd1ab4616d05cc2318d1.gz --- actions/newnotice.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'actions/newnotice.php') diff --git a/actions/newnotice.php b/actions/newnotice.php index 5bbc91531..23f31028b 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -1,18 +1,18 @@ . */ @@ -20,7 +20,7 @@ if (!defined('LACONICA')) { exit(1); } class NewnoticeAction extends Action { - + function handle($args) { parent::handle($args); # XXX: Ajax! @@ -40,7 +40,7 @@ class NewnoticeAction extends Action { $this->show_form(); } } - + function save_new_notice() { $user = common_current_user(); assert($user); # XXX: maybe an error instead... @@ -49,7 +49,7 @@ class NewnoticeAction extends Action { $notice->profile_id = $user->id; # user id *is* profile id $notice->created = DB_DataObject_Cast::dateTime(); $notice->content = trim($this->arg('content')); - + $val = $notice->validate(); if ($val === TRUE) { return $notice->insert(); @@ -58,7 +58,7 @@ class NewnoticeAction extends Action { return NULL; } } - + function show_form() { common_show_header(_t('New notice')); common_element_start('form', array('id' => 'newnotice', 'method' => 'POST', -- cgit v1.2.3-54-g00ecf