summaryrefslogtreecommitdiff
path: root/actions/newnotice.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-05-20 17:23:19 -0400
committerEvan Prodromou <evan@prodromou.name>2008-05-20 17:23:19 -0400
commit82c05d389ab0a0bb64a339d0cf3547d3c6ada3ae (patch)
treeb5f86a2726b14c760ef85c6f52ac0fe62f297fb3 /actions/newnotice.php
parent48eaede398859927e9ccdc39b21e26f1832c9910 (diff)
fixup textarea again
darcs-hash:20080520212319-84dde-27601a4e11dd6a34834f4689c316dae594d8d7e8.gz
Diffstat (limited to 'actions/newnotice.php')
-rw-r--r--actions/newnotice.php3
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) {