diff options
author | friendica <info@friendica.com> | 2012-07-07 04:19:15 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-07 04:19:15 -0700 |
commit | 0c5af9f3037477ac2736bcc856e5315fef6ba181 (patch) | |
tree | 1665881588528686707e8f82819f23a233351e90 | |
parent | 7788a932587155e7df3ca922087b517eb2e4791b (diff) | |
parent | 4fb996d9f783ccc9fd2f029615c6630d55435e87 (diff) | |
download | volse-hubzilla-0c5af9f3037477ac2736bcc856e5315fef6ba181.tar.gz volse-hubzilla-0c5af9f3037477ac2736bcc856e5315fef6ba181.tar.bz2 volse-hubzilla-0c5af9f3037477ac2736bcc856e5315fef6ba181.zip |
Merge pull request #379 from fermionic/events-display-wrong-in-diaspora
remove check for event description in bb2diaspora
-rw-r--r-- | include/bb2diaspora.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index 042177fd9..d0cb60302 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -346,7 +346,7 @@ function bb2diaspora($Text,$preserve_nl = false) { // If we found an event earlier, strip out all the event code and replace with a reformatted version. - if(x($ev,'desc') && x($ev,'start')) { + if(x($ev,'start')) { $sub = format_event_diaspora($ev); |