diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-20 17:23:19 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-20 17:23:19 -0400 |
commit | 82c05d389ab0a0bb64a339d0cf3547d3c6ada3ae (patch) | |
tree | b5f86a2726b14c760ef85c6f52ac0fe62f297fb3 /actions | |
parent | 48eaede398859927e9ccdc39b21e26f1832c9910 (diff) |
fixup textarea again
darcs-hash:20080520212319-84dde-27601a4e11dd6a34834f4689c316dae594d8d7e8.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/newnotice.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php index cc62901f2..faf9b21ef 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -48,7 +48,8 @@ class NewnoticeAction extends Action { assert($notice); $notice->profile_id = $user->id; # user id *is* profile id $notice->created = DB_DataObject_Cast::dateTime(); - $notice->content = trim($this->arg('content')); + # Default theme uses 'content' for something else + $notice->content = trim($this->arg('noticecontent')); $val = $notice->validate(); if ($val === TRUE) { |