diff options
author | zotlabs <mike@macgirvin.com> | 2017-09-18 21:55:45 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-09-18 21:55:45 -0700 |
commit | c6bcea0f82a03657611621c338a6c01059ae8ec6 (patch) | |
tree | ab255b97608c240afcca9a249c49b0843b8ec4fb /include/feedutils.php | |
parent | 4fbebe7b2d6c38747986d18ea07db5b42c2a072a (diff) | |
download | volse-hubzilla-c6bcea0f82a03657611621c338a6c01059ae8ec6.tar.gz volse-hubzilla-c6bcea0f82a03657611621c338a6c01059ae8ec6.tar.bz2 volse-hubzilla-c6bcea0f82a03657611621c338a6c01059ae8ec6.zip |
pubcrawl: make a good faith effort to handle multi-media content
Diffstat (limited to 'include/feedutils.php')
-rw-r--r-- | include/feedutils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/feedutils.php b/include/feedutils.php index 4cc194fb1..112e10155 100644 --- a/include/feedutils.php +++ b/include/feedutils.php @@ -1711,7 +1711,7 @@ function compat_photos_list($s) { $found = preg_match_all('/\[[zi]mg(.*?)\](.*?)\[/ism',$s,$matches,PREG_SET_ORDER); if($found) { - foreach($matches as $match) { + foreach($matches as $match) { $ret[] = [ 'href' => $match[2], 'length' => 0, |