@@ -845,7 +845,7 @@ discard block |
||
| 845 | 845 | $query['theme'] = $this->getTheme(); |
| 846 | 846 | |
| 847 | 847 | $seperator = $encode ? '&' : '&'; |
| 848 | - $url .= '?'.http_build_query($query, $seperator); |
|
| 848 | + $url .= '?' . http_build_query($query, $seperator); |
|
| 849 | 849 | |
| 850 | 850 | return $url; |
| 851 | 851 | } |
@@ -861,14 +861,14 @@ discard block |
||
| 861 | 861 | { |
| 862 | 862 | // Build the string |
| 863 | 863 | $html = '<object type="application/x-shockwave-flash"'; |
| 864 | - $html .= ' width="'.$this->getWidth().'"'; |
|
| 865 | - $html .= ' height="'.$this->getHeight().'"'; |
|
| 866 | - $html .= ' data="'.$this->getEmbedURL().'"'; |
|
| 864 | + $html .= ' width="' . $this->getWidth() . '"'; |
|
| 865 | + $html .= ' height="' . $this->getHeight() . '"'; |
|
| 866 | + $html .= ' data="' . $this->getEmbedURL() . '"'; |
|
| 867 | 867 | if ($this->isInvisible()) { |
| 868 | 868 | $html .= ' style="visibility:hidden;display:inline;"'; |
| 869 | 869 | } |
| 870 | 870 | $html .= '>'; |
| 871 | - $html .= '<param name="movie" value="'.$this->getEmbedURL().'" />'; |
|
| 871 | + $html .= '<param name="movie" value="' . $this->getEmbedURL() . '" />'; |
|
| 872 | 872 | $html .= '<param name="wmode" value="transparent" />'; |
| 873 | 873 | $html .= '</object>'; |
| 874 | 874 | |