diff options
author | friendica <info@friendica.com> | 2012-06-23 05:47:31 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-23 05:47:31 -0700 |
commit | 49360b0a646d78ba8a5dbfee039f3d4929e0c4d0 (patch) | |
tree | e34851592f804aadeaf36c9fe70a0967654bef12 /include/oembed.php | |
parent | 22ca358a8c01144c8172b5108514d85906f1ff7d (diff) | |
parent | b97c406c825004f87a74d310533c8bfbd0fc5218 (diff) | |
download | volse-hubzilla-49360b0a646d78ba8a5dbfee039f3d4929e0c4d0.tar.gz volse-hubzilla-49360b0a646d78ba8a5dbfee039f3d4929e0c4d0.tar.bz2 volse-hubzilla-49360b0a646d78ba8a5dbfee039f3d4929e0c4d0.zip |
Merge https://github.com/friendica/friendica into pull
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": { |