PEN
Aktives Mitglied
Wenn ich in ES (0.974) einen neuen Artikel erfasse und 2 Bilder zuweise, wird nur das erste Bild vom Connector (0.99b) hinaufgeladen.
Gruss
PEN
Gruss
PEN
Zitat von Thomas Lisson:Ab der 0.976 geht es. Siehe http://jtl-software.de/forum/viewtopic.php?t=295
//is es ein jpg?
if (eregi("jpg",substr($product->products_image,strlen($product->products_image)-3)))
{
$pic=HTTP_CATALOG_SERVER.$path.$product->products_image;
}
//is es ein jpeg?
if (eregi("jpeg",substr($product->products_image,strlen($product->products_image)-4)))
{
$pic=HTTP_CATALOG_SERVER.$path.$product->products_image;
}