diff options
author | friendica <info@friendica.com> | 2012-06-23 05:11:31 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-23 05:11:31 -0700 |
commit | b97c406c825004f87a74d310533c8bfbd0fc5218 (patch) | |
tree | 25d2103fb3ce9edf45c0f7d1142b5cd3f63f8591 /include/oembed.php | |
parent | bf47bf5ba015a844919362a56903eb82c064bee9 (diff) | |
parent | a81af2e042ae133bec3097488feeaa1318dc798b (diff) | |
download | volse-hubzilla-b97c406c825004f87a74d310533c8bfbd0fc5218.tar.gz volse-hubzilla-b97c406c825004f87a74d310533c8bfbd0fc5218.tar.bz2 volse-hubzilla-b97c406c825004f87a74d310533c8bfbd0fc5218.zip |
Merge pull request #351 from annando/master
Massive change in bbcode2markdown
Diffstat (limited to 'include/oembed.php')
-rwxr-xr-x | include/oembed.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/oembed.php b/include/oembed.php index e2504b7eb..a4452586e 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -93,7 +93,8 @@ function oembed_format_object($j){ $ret.="<br>"; }; break; case "photo": { - $ret.= "<img width='".$j->width."' height='".$j->height."' src='".$j->url."'>"; + $ret.= "<img width='".$j->width."' src='".$j->url."'>"; + //$ret.= "<img width='".$j->width."' height='".$j->height."' src='".$j->url."'>"; $ret.="<br>"; }; break; case "link": { |