diff options
author | Mario <mario@mariovavti.com> | 2021-05-27 09:09:52 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-05-27 09:09:52 +0000 |
commit | 6a7e06f11cb200d4ed1ea29688a3d8eaf98c45ea (patch) | |
tree | 0052b87997e7962415f70e253bce1dfb538098f0 | |
parent | adba56a5e539bfc958bd0f2f9f7d807d38c189f9 (diff) | |
download | volse-hubzilla-6a7e06f11cb200d4ed1ea29688a3d8eaf98c45ea.tar.gz volse-hubzilla-6a7e06f11cb200d4ed1ea29688a3d8eaf98c45ea.tar.bz2 volse-hubzilla-6a7e06f11cb200d4ed1ea29688a3d8eaf98c45ea.zip |
deprecate get_rpost_path()
-rw-r--r-- | Zotlabs/Module/Rpost.php | 4 | ||||
-rw-r--r-- | include/bbcode.php | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/Zotlabs/Module/Rpost.php b/Zotlabs/Module/Rpost.php index 031270845..ff306d138 100644 --- a/Zotlabs/Module/Rpost.php +++ b/Zotlabs/Module/Rpost.php @@ -1,6 +1,8 @@ <?php namespace Zotlabs\Module; /** @file */ +use Zotlabs\Lib\Libzot; + require_once('include/acl_selectors.php'); require_once('include/crypto.php'); require_once('include/items.php'); @@ -42,7 +44,7 @@ class Rpost extends \Zotlabs\Web\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 228af7faa..5873d5e68 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -5,6 +5,7 @@ */ use Zotlabs\Lib\SvgSanitizer; +use Zotlabs\Lib\Libzot; require_once('include/oembed.php'); require_once('include/event.php'); @@ -616,9 +617,9 @@ function bb_ShareAttributesSimple($match) { function rpost_callback($match) { if ($match[2]) { - return str_replace($match[0], get_rpost_path(App::get_observer()) . '&title=' . urlencode($match[2]) . '&body=' . urlencode($match[3]), $match[0]); + return str_replace($match[0], Libzot::get_rpost_path(App::get_observer()) . '&title=' . urlencode($match[2]) . '&body=' . urlencode($match[3]), $match[0]); } else { - return str_replace($match[0], get_rpost_path(App::get_observer()) . '&body=' . urlencode($match[3]), $match[0]); + return str_replace($match[0], Libzot::get_rpost_path(App::get_observer()) . '&body=' . urlencode($match[3]), $match[0]); } } |