diff --git a/Zotlabs/Module/Rpost.php b/Zotlabs/Module/Rpost.php index b17e15ca6..35e9c0a0b 100644 --- a/Zotlabs/Module/Rpost.php +++ b/Zotlabs/Module/Rpost.php @@ -6,7 +6,7 @@ use App; use Zotlabs\Web\Controller; use Zotlabs\Access\AccessControl; use Zotlabs\Lib\PermissionDescription; - +use Zotlabs\Lib\Libzot; require_once('include/acl_selectors.php'); require_once('include/items.php'); @@ -46,7 +46,7 @@ class Rpost extends Controller { // by the wretched beast called 'suhosin'. All the browsers now allow long GET requests, but suhosin // blocks them. - $url = get_rpost_path(App::get_observer()); + $url = Libzot::get_rpost_path(App::get_observer()); // make sure we're not looping to our own hub if(($url) && (! stristr($url, App::get_hostname()))) { foreach($_GET as $key => $arg) { diff --git a/include/bbcode.php b/include/bbcode.php index 343dd8ca8..6f0b3b5d0 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -1,5 +1,8 @@