X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fvideos.php;h=0f29e631bdcc99f8350de85baaea87f7cd4537b5;hb=84189ac775b3e1bc36d9e9d8945624c1bca7fb55;hp=9846e54fc2d17d07484bbc46514e82e7f600b661;hpb=3a13aba62e15728d1d5c0b43108c86a36959e2dd;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(), + )); }