summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-08-11 14:39:39 -0700
committerBrion Vibber <brion@pobox.com>2010-08-11 14:41:31 -0700
commit527561cd93b69ddaba660f272462aadfaef0c511 (patch)
tree28ee227bad7a05821182974c9f8b23b7848b5967 /actions
parentc19696afecd98f225181c8a8a368712954d6dbd4 (diff)
TinyMCE: core tweak; switching order of input processing so length limit is applied to stripped version of the text
Diffstat (limited to 'actions')
-rw-r--r--actions/newnotice.php14
1 files changed, 6 insertions, 8 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php
index 5e682ffd0..8263198f7 100644
--- a/actions/newnotice.php
+++ b/actions/newnotice.php
@@ -131,6 +131,8 @@ class NewnoticeAction extends Action
$user = common_current_user();
assert($user); // XXX: maybe an error instead...
$content = $this->trimmed('status_textarea');
+ $options = array();
+ Event::handle('StartSaveNewNoticeWeb', array($this, $user, &$content, &$options));
if (!$content) {
$this->clientError(_('No content!'));
@@ -157,11 +159,9 @@ class NewnoticeAction extends Action
Notice::maxContent()));
}
- $replyto = $this->trimmed('inreplyto');
- #If an ID of 0 is wrongly passed here, it will cause a database error,
- #so override it...
- if ($replyto == 0) {
- $replyto = 'false';
+ $replyto = intval($this->trimmed('inreplyto'));
+ if ($replyto) {
+ $options['replyto'] = $replyto;
}
$upload = null;
@@ -182,8 +182,6 @@ class NewnoticeAction extends Action
}
}
- $options = array('reply_to' => ($replyto == 'false') ? null : $replyto);
-
if ($user->shareLocation()) {
// use browser data if checked; otherwise profile data
if ($this->arg('notice_data-geo')) {
@@ -203,12 +201,12 @@ class NewnoticeAction extends Action
$options = array_merge($options, $locOptions);
}
- Event::handle('SaveNewNoticeWeb', array($this, $user, &$content_shortened, &$options));
$notice = Notice::saveNew($user->id, $content_shortened, 'web', $options);
if (isset($upload)) {
$upload->attachToNotice($notice);
}
+ Event::handle('EndSaveNewNoticeWeb', array($this, $user, &$content_shortened, &$options));
if ($this->boolean('ajax')) {
header('Content-Type: text/xml;charset=utf-8');