diff options
author | friendica <info@friendica.com> | 2013-12-02 23:57:50 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-02 23:57:50 -0800 |
commit | d96f5e2c081b582a77097b06706416d5ff371211 (patch) | |
tree | 5d00640dd86d86db8ec1d384de5b6473a83a2846 /util | |
parent | 9f2efb0291e18ed9c042e8c018b8481c69179f26 (diff) | |
download | volse-hubzilla-d96f5e2c081b582a77097b06706416d5ff371211.tar.gz volse-hubzilla-d96f5e2c081b582a77097b06706416d5ff371211.tar.bz2 volse-hubzilla-d96f5e2c081b582a77097b06706416d5ff371211.zip |
undo last change to comment_email - these are checked for validity
Diffstat (limited to 'util')
-rw-r--r-- | util/wp/post_to_red/post_to_red.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/wp/post_to_red/post_to_red.php b/util/wp/post_to_red/post_to_red.php index 43e24283c..11b1b48f7 100644 --- a/util/wp/post_to_red/post_to_red.php +++ b/util/wp/post_to_red/post_to_red.php @@ -356,7 +356,7 @@ function red_comment($args) { $comment['comment_author_email'] = ''; if ( isset($content_struct['author_email']) ) - $comment['comment_author_email'] = 'zot:' . $content_struct['author_email']; + $comment['comment_author_email'] = $content_struct['author_email']; $comment['comment_author_url'] = ''; if ( isset($content_struct['author_url']) ) |