diff options
author | Andreas Gohr <andi@splitbrain.org> | 2009-01-16 19:25:23 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2009-01-16 19:25:23 +0100 |
commit | d4c61e61a8c538dba420faa1f5725b10c5d7c398 (patch) | |
tree | 1027a33d8f99958f7eb2f48be7a5049b6d7c790c /inc/html.php | |
parent | 07bf32b240a999581627aadcc58c044a577dc62a (diff) | |
download | rpg-d4c61e61a8c538dba420faa1f5725b10c5d7c398.tar.gz rpg-d4c61e61a8c538dba420faa1f5725b10c5d7c398.tar.bz2 |
Use html_flashobject for MultiUploader
darcs-hash:20090116182523-7ad00-3bf44603ff1f5193877e0a29400b25a8edc5365a.gz
Diffstat (limited to 'inc/html.php')
-rw-r--r-- | inc/html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/html.php b/inc/html.php index 43ab397d0..c697b1f51 100644 --- a/inc/html.php +++ b/inc/html.php @@ -1465,7 +1465,7 @@ function html_flashobject($swf,$width,$height,$params=null,$flashvars=null,$atts // prepare the object attributes if(is_null($atts)) $atts = array(); $atts['width'] = (int) $width; - $atts['height'] = (int) $heigh; + $atts['height'] = (int) $height; if(!$atts['width']) $atts['width'] = 425; if(!$atts['height']) $atts['height'] = 350; @@ -1494,7 +1494,7 @@ function html_flashobject($swf,$width,$height,$params=null,$flashvars=null,$atts // add flashvars if(is_array($flashvars)){ - $out .= ' <param name="flashvars" value="'.hsc(buildURLparams($flashvars)).'" />'.NL; + $out .= ' <param name="FlashVars" value="'.buildURLparams($flashvars).'" />'.NL; } // alternative content |