update to v4.0.0; point to local host of SWF

This commit is contained in:
Zach Prezkuta 2013-05-11 10:49:54 -06:00
commit 35358baac9
26 changed files with 6837 additions and 4949 deletions

View file

@ -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(),
));
}