Ver Mensaje Individual
  #9 (permalink)  
Antiguo 09/04/2009, 09:42
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: novato - error de syntaxis

Aunque viendo parece que son instrucciones, te esta diciendo que aproximadamente por la linea 291, tienes que agregar esas lineas:
Código php:
Ver original
  1. tep_session_unregister('customer_shopping_points_spending');// Points/Rewards Module V1.50
  2.  
  3.   $customer_notification = (SEND_EMAILS == 'true') ? '1' : '0';
  4.   $sql_data_array = array('orders_id' => $insert_id,
  5.                           'orders_status_id' => $order->info['order_status'],
  6.                           'date_added' => 'now()',
  7.                           'customer_notified' => $customer_notification,
  8.                           'comments' => $order->info['comments']);
  9.   tep_db_perform(TABLE_ORDERS_STATUS_HISTORY, $sql_data_array);

No que incluyas ese archivo tal cual, veo que tu problema no es en sí de PHP, si no de otra cosa que estas haciendo como un mod, revisa y lee las instrucciones que te da el file.

Saludos.