diff options
author | Robin Millette <millette@controlyourself.ca> | 2009-05-13 14:27:32 -0400 |
---|---|---|
committer | Robin Millette <millette@controlyourself.ca> | 2009-05-13 14:27:32 -0400 |
commit | 3b7ee5a5f9a2cd3066aff8a7a12d09878be3b06c (patch) | |
tree | d0f1521040251c6afe522f37f04aade4cd3fa89b /classes/Notice.php | |
parent | d010d811ba812ccc8fbb1a49fcba7a30226ea779 (diff) |
rewrote short url stuff to handle new file/url classes (redirections, oembed, mimetypes, etc.)
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 382d160ab..c2fa2d19e 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -124,7 +124,7 @@ class Notice extends Memcached_DataObject $profile = Profile::staticGet($profile_id); - $final = common_shorten_links($content); +// $final = common_shorten_links($content); if (!$profile) { common_log(LOG_ERR, 'Problem saving notice. Unknown user.'); @@ -167,8 +167,8 @@ class Notice extends Memcached_DataObject $notice->reply_to = $reply_to; $notice->created = common_sql_now(); - $notice->content = $final; - $notice->rendered = common_render_content($final, $notice); + $notice->content = $content; + $notice->rendered = common_render_content($content, $notice); $notice->source = $source; $notice->uri = $uri; |