aboutsummaryrefslogtreecommitdiffstats
path: root/include/oembed.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-06-23 05:11:31 -0700
committerfriendica <info@friendica.com>2012-06-23 05:11:31 -0700
commitb97c406c825004f87a74d310533c8bfbd0fc5218 (patch)
tree25d2103fb3ce9edf45c0f7d1142b5cd3f63f8591 /include/oembed.php
parentbf47bf5ba015a844919362a56903eb82c064bee9 (diff)
parenta81af2e042ae133bec3097488feeaa1318dc798b (diff)
downloadvolse-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-xinclude/oembed.php3
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": {