aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMichael <icarus@dabo.de>2012-06-18 08:49:35 +0200
committerMichael <icarus@dabo.de>2012-06-18 08:49:35 +0200
commitd53414a333964026c26c3acee0d953e742a9a633 (patch)
tree17c20abc3d8286ad8fb964d932bd885062561da5 /include
parentd61408958218c3842906b70e38865c5cbdf0e29c (diff)
downloadvolse-hubzilla-d53414a333964026c26c3acee0d953e742a9a633.tar.gz
volse-hubzilla-d53414a333964026c26c3acee0d953e742a9a633.tar.bz2
volse-hubzilla-d53414a333964026c26c3acee0d953e742a9a633.zip
OEmbed: Don't output the width of images
Diffstat (limited to 'include')
-rwxr-xr-xinclude/oembed.php3
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": {