X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fvideos.php;h=0f29e631bdcc99f8350de85baaea87f7cd4537b5;hb=1a62a6ca921eb3388e18d6703a2c07f324d15d5d;hp=9846e54fc2d17d07484bbc46514e82e7f600b661;hpb=fec4581f34f9711f79e808ea410ace8c81a5b9bf;p=friendica.git diff --git a/mod/videos.php b/mod/videos.php index 9846e54fc2..0f29e631bd 100644 --- a/mod/videos.php +++ b/mod/videos.php @@ -74,10 +74,14 @@ function videos_init(&$a) { $tpl = get_markup_template("videos_head.tpl"); - $a->page['htmlhead'] .= replace_macros($tpl,array()); + $a->page['htmlhead'] .= replace_macros($tpl,array( + '$baseurl' => $a->get_baseurl(), + )); $tpl = get_markup_template("videos_end.tpl"); - $a->page['end'] .= replace_macros($tpl,array()); + $a->page['end'] .= replace_macros($tpl,array( + '$baseurl' => $a->get_baseurl(), + )); }