Fixes for #3010:
- used static call, still App::get_baseurl() wraps it into an object-referencing call which seems to be a bit redundant? - added spaces around dot (see one line below) Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
@@ -264,7 +264,7 @@ function oembed_iframe($src, $width, $height) {
|
||||
}
|
||||
$width = '100%';
|
||||
|
||||
$s = $a->get_baseurl() . '/oembed/'.base64url_encode($src);
|
||||
$s = App::get_baseurl() . '/oembed/' . base64url_encode($src);
|
||||
return '<iframe onload="resizeIframe(this);" class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $s . '" allowfullscreen scrolling="no" frameborder="no">' . t('Embedded content') . '</iframe>';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user