Quote Originally Posted by Mike_Dean View Post
Thanks Rod..

if ( $quote->description == "3Kg Prepaid Satchel Express") { $quote->description = "Express Satchel" ; } straight after the other mod did the trick..

Much appreciated..

Mike
If you are interested in optimising this, both changes van be done at the same time as a result of just a single test.... eg:

if ( $quote->description == "3Kg Prepaid Satchel Express") { $quote->description = "Express Satchel" ;
$description = "Express Satchel" ;
}

Cheers
Rod.

ps. This will only improve performance by a few microseconds, so don't expect any observable difference. In isolation it isn't enough to worry about, but such optimisations repeated throughout any given code has a cumunilative effect that can be quite significant.