Hello all, I hope I get this right as I'm new and I'm not used to posting on these things 
I've installed this module on my site (it isn't live yet), and it's an absolute beauty, thank you so much to all who've worked on it! I have tested it and cant find anything wrong with how it works. However the backend looks a bit odd. When I'm in admin, modules, shipping, above the table of modules there is a whole bunch of code, it's quite long, but here is an excerpt
PHP Code:
case false: if($order->info['total'] < MODULE_SHIPPING_RM1STPACKETSF_MIN_ORDERVALUE){ $this->enabled = false; return ; }else if(MODULE_SHIPPING_RM1STPACKETSF_MAX_ORDERVALUE != -1 && $order->info['total'] > MODULE_SHIPPING_RM1STPACKETSF_MAX_ORDERVALUE){ $this->enabled = false; return ; } break; } // end of switch on subtotal // check that it is a valid country being shipped to. $dest_country = $order->delivery['country']['iso_code_2']; $dest_zone = 0; for ($i=1; $i<=$this->num_zones; $i++) { $countries_table = constant('MODULE_SHIPPING_RM1STPACKETSF_ZONES_COUNTRIES_' . $i); $country_zones = preg_split("/,/", preg_replace('/\s*/','',$countries_table) ); if (in_array($dest_country, $country_zones)) { $dest_zone = $i; break; } } // ship to country is invalid for this service if ($dest_zone == 0) { $this->enabled = false; return ; }else{ $this->enabled = false; // enabled set to true if valid shipping weight found $zones_cost = constant('MODULE_SHIPPING_RM1STPACKETSF_ZONES_COST0_' . $dest_zone); $zones_table = preg_split("/[:,]/" , preg_replace('/\s*/','',$zones_cost) ); $size = sizeof($zones_table); for ($i=0; $i<$size; $i+=2) { if ($total_weight <= $zones_table[$i]) { $this->enabled = true; break; } } // end of looping through return ; } // end of valid country } // end of if hide invalid shipping methods is set } // class methods function quote($method = '') { global $order, $shipping_weight, $shipping_num_boxes, $currency; $currencies = new currencies(); $dest_country = $order->delivery['country']['iso_code_2']; $dest_zone = 0; $error = false; for ($i=1; $i<=$this->num_zones; $i++)
If you want more of an idea of how it looks, here is a screenshot

What I want to know, is does anyone else get anything like this? is it something I need to worry about, given that the module does seem to work?
Thanks in advance for any help...if it isn't already apparent I am no programmer, so the less jargon the better 
Cheers!
Bookmarks