All pastes #1878648 Raw Edit

GreenSkunk

public text v1 · immutable
#1878648 ·published 2010-06-07 20:14 UTC
rendered paste body
<?php
function custom_cart_form_alter(&$form, $form_state, $form_id) {
	if ($form_id == 'uc_cart_view_form') {

		for($i=0;$i<count(uc_cart_get_contents());$i++){
		
			$form['items'][$i]['sku']['#value'] = node_load($form['items'][$i]['nid']['#value'])->model;
		
		}

	}
}