Jump to content
xt:Commerce Community Forum

Frage Zu Bug Id 196


Rodent

Recommended Posts

http://www.xt-commerce.com/modules/mantis/...?bug_id=0000196

so ich hab nun rausgefunden,

da? der Bugfix in der root/ includes/modules/new_products.php anzuwenden ist.

der Bugfix lautet:

in der new_products.php

f?r der if ($new_products['products_image']!='') { ein $image=''; setzen. 
in der besagten Datei gibt es diesen Code hjedoch 2x. einmal in Zeile 86 und einmal in Zeile 100
if ($new_products['products_image']!='') {

welche Zeile ist zu ?ndern?

wie genau muss die Zeile danach aussehen?

"...mit den Augen eines n00bs..."

Danke

Alex

Link to comment
Share on other sites

Ich habs bei mir durch ein Standartbild ersetzen lassen

 

  if ($new_products['products_image']!='') {

  $image=DIR_WS_THUMBNAIL_IMAGES . $new_products['products_image'];

  }else{

  $image=DIR_WS_THUMBNAIL_IMAGES . 'Artikel.jpg';

  }

ansonsten sollte auch

  if ($new_products['products_image']!='') {

  $image=DIR_WS_THUMBNAIL_IMAGES . $new_products['products_image'];

  }else{

  $image='';

  }

gehen.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...