remove debugging code

This commit is contained in:
DariusIII
2016-10-29 00:50:44 +02:00
parent 8b11ef5658
commit b9fdd79cfc
-2
View File
@@ -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();