diff --git a/nntmux/ReleaseImage.php b/nntmux/ReleaseImage.php index 67b42f809..ee6fbd247 100755 --- a/nntmux/ReleaseImage.php +++ b/nntmux/ReleaseImage.php @@ -87,10 +87,8 @@ class ReleaseImage $img = false; if (strpos(strtolower($imgLoc), 'http:') === 0 || strpos(strtolower($imgLoc), 'https:') === 0) { $img = Utility::getUrl(['url' => $imgLoc]); - echo 'Remote URL'; } else if (is_file($imgLoc)) { $img = @file_get_contents($imgLoc); - echo 'Local File\n'; } if ($img !== false) { $imagick = new \Imagick();