diff options
author | friendica <info@friendica.com> | 2013-02-23 01:27:43 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-02-23 01:27:43 -0800 |
commit | 32aef838f8317ef908f50c02c2edd4a6fa9ee012 (patch) | |
tree | 1a8ad1f0accbf77e4afd4354eb13c219e94103e7 /mod/update_display.php | |
parent | 1abce176ff35a0ce5cf6c9b2a762afe279387db7 (diff) | |
download | volse-hubzilla-32aef838f8317ef908f50c02c2edd4a6fa9ee012.tar.gz volse-hubzilla-32aef838f8317ef908f50c02c2edd4a6fa9ee012.tar.bz2 volse-hubzilla-32aef838f8317ef908f50c02c2edd4a6fa9ee012.zip |
allow embedded content via ajax on page load
Diffstat (limited to 'mod/update_display.php')
-rw-r--r-- | mod/update_display.php | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/mod/update_display.php b/mod/update_display.php index c8eb9c3a3..5802852bb 100644 --- a/mod/update_display.php +++ b/mod/update_display.php @@ -16,11 +16,12 @@ function update_display_content(&$a) { echo (($_GET['msie'] == 1) ? '<div>' : '<section>'); - $text = display_content($a,$profile_uid, $load); - $pattern = "/<img([^>]*) src=\"([^\"]*)\"/"; - $replace = "<img\${1} dst=\"\${2}\""; - $text = preg_replace($pattern, $replace, $text); + $text = display_content($a,$profile_uid, $load); + $pattern = "/<img([^>]*) src=\"([^\"]*)\"/"; + $replace = "<img\${1} dst=\"\${2}\""; + $text = preg_replace($pattern, $replace, $text); + if(! $load) { $replace = '<br />' . t('[Embedded content - reload page to view]') . '<br />'; $pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i"; $text = preg_replace($pattern, $replace, $text); @@ -30,9 +31,9 @@ function update_display_content(&$a) { $text = preg_replace($pattern, $replace, $text); $pattern = "/<\s*iframe[^>]*>(.*?)<\s*\/\s*iframe>/i"; $text = preg_replace($pattern, $replace, $text); + } - - echo str_replace("\t",' ',$text); + echo str_replace("\t",' ',$text); echo (($_GET['msie'] == 1) ? '</div>' : '</section>'); echo "</body></html>\r\n"; // logger('update_display: ' . $text); |