Closed (fixed)
Project:
Commerce Australia Post
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 Jan 2015 at 06:31 UTC
Updated:
21 Jun 2015 at 15:18 UTC
Jump to comment: Most recent
Comments
Comment #1
stephen ollmanApparently its the hyphen in the machine name that causes the issue.
commerce_shipping_service_regular_parcel-standard_service
Comment #2
stephen ollmanMachine name: commerce_shipping_service_regular_parcel-standard_service
Comment #3
stephen ollmanI'm unable to edit this or update it. This value is set by default in the module.
Comment #4
stephen ollmanUpdate the following line (191) in the file: commerce_australia_post.module
from:
$service['slug'] = str_replace(' - ', '-', drupal_strtolower($service['title']));
to:
$service['slug'] = str_replace(' - ', '_', drupal_strtolower($service['title']));
This fixed the issue and allowed me to save updates.
Comment #5
jcherbert commented