diff options
author | Michael <icarus@dabo.de> | 2012-06-18 08:49:35 +0200 |
---|---|---|
committer | Michael <icarus@dabo.de> | 2012-06-18 08:49:35 +0200 |
commit | d53414a333964026c26c3acee0d953e742a9a633 (patch) | |
tree | 17c20abc3d8286ad8fb964d932bd885062561da5 | |
parent | d61408958218c3842906b70e38865c5cbdf0e29c (diff) | |
download | volse-hubzilla-d53414a333964026c26c3acee0d953e742a9a633.tar.gz volse-hubzilla-d53414a333964026c26c3acee0d953e742a9a633.tar.bz2 volse-hubzilla-d53414a333964026c26c3acee0d953e742a9a633.zip |
OEmbed: Don't output the width of images
-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..910f4aaf9 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."' height='".$j->height."' src='".$j->url."'>"; + $ret.= "<img width='".$j->width."' src='".$j->url."'>"; $ret.="<br>"; }; break; case "link": { |