aboutsummaryrefslogtreecommitdiffstats
path: root/include/bbcode.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-04-26 20:27:14 -0700
committerMario Vavti <mario@mariovavti.com>2018-04-27 09:58:17 +0200
commitd0ba2cf6d469f2cbaef3749525eb19fcf36ed26d (patch)
tree9e66addfa68cb954c0c844de6ee1229a851ef4fc /include/bbcode.php
parente33d8c288b86bf42b2471df4cb963395ed1664b9 (diff)
downloadvolse-hubzilla-d0ba2cf6d469f2cbaef3749525eb19fcf36ed26d.tar.gz
volse-hubzilla-d0ba2cf6d469f2cbaef3749525eb19fcf36ed26d.tar.bz2
volse-hubzilla-d0ba2cf6d469f2cbaef3749525eb19fcf36ed26d.zip
where possible strip zid parameter from links that get pasted into posts so that they will get a correct zid when rendered
Diffstat (limited to 'include/bbcode.php')
-rw-r--r--include/bbcode.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index 340fe6b25..345b5b025 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -85,12 +85,14 @@ function tryoembed($match) {
function nakedoembed($match) {
$url = ((count($match) == 2) ? $match[1] : $match[2]);
- $o = oembed_fetch_url($url);
+ $strip_url = strip_escaped_zids($url);
+
+ $o = oembed_fetch_url($strip_url);
if ($o['type'] == 'error')
- return $match[0];
+ return str_replace($url,$strip_url,$match[0]);
- return '[embed]' . $url . '[/embed]';
+ return '[embed]' . $strip_url . '[/embed]';
}
function tryzrlaudio($match) {