]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/Text/Markdown.php
Fix code standards
[friendica.git] / src / Content / Text / Markdown.php
index 53983113b27dfb46a85d597bab7ec45846850c6d..33e023bc03662b9f55bbec4913a12b6506d6463a 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -145,9 +145,6 @@ class Markdown
                // remove duplicate adjacent code tags
                $s = preg_replace('/(\[code\])+(.*?)(\[\/code\])+/ism', '[code]$2[/code]', $s);
 
-               // Don't show link to full picture (until it is fixed)
-               $s = BBCode::scaleExternalImages($s);
-
                DI::profiler()->stopRecording();
                return $s;
        }