diff --git a/newmemberwidget/README.md b/newmemberwidget/README.md index 39522238..c165ae0d 100644 --- a/newmemberwidget/README.md +++ b/newmemberwidget/README.md @@ -10,8 +10,8 @@ introduction pages at /newmember and optionally * a welcome message you might want to send to your new members. There is no extra styling added for this added, so it should work with any -theme you have selected, or your user selects. However, it wasn't tested -with frio nor vier. +theme you have selected, or your user selects. But it was only tested with +duepuntozero,quattro and clean. Testing it ---------- diff --git a/pumpio/pumpio.php b/pumpio/pumpio.php index 614bb7a4..4a7d96d2 100644 --- a/pumpio/pumpio.php +++ b/pumpio/pumpio.php @@ -33,6 +33,7 @@ use Friendica\Util\XML; require 'addon/pumpio/oauth/http.php'; require 'addon/pumpio/oauth/oauth_client.php'; +require_once 'mod/share.php'; define('PUMPIO_DEFAULT_POLL_INTERVAL', 5); // given in minutes diff --git a/windowsphonepush/windowsphonepush.php b/windowsphonepush/windowsphonepush.php index 1d0423b2..0a43f69e 100644 --- a/windowsphonepush/windowsphonepush.php +++ b/windowsphonepush/windowsphonepush.php @@ -185,7 +185,7 @@ function windowsphonepush_cron() if (substr($body, 0, 4) == "[url") { $body = "URL/Image ..."; } else { - $body = BBCode::convertForUriId($item['uri-id'], $body, BBCode::API); + $body = BBCode::convertForUriId($item['uri-id'], $body, BBCode::MASTODON_API); $body = HTML::toPlaintext($body, 0); $body = ((strlen($body) > 137) ? substr($body, 0, 137) . "..." : $body); }