Zen Cart Logo
Forums / Bug Reports / Shipping Estimator Order Class

Shipping Estimator Order Class

Views: 621

Results 1 to 3 of 3
29 Nov 2012, 10:52 PM
#1
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Shipping Estimator Order Class

Line 84:

require(DIR_WS_CLASSES . 'order.php');

Should be:

require_once(DIR_WS_CLASSES . 'order.php');

29 Nov 2012, 11:15 PM
#2
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
177

Re: Shipping Estimator Order Class

What's the use-case scenario where you're triggering a need for this?

8 Jan 2013, 12:28 AM
#3
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
177

Re: Shipping Estimator Order Class

Whenever a script appears to need a "require_once" it suggests that there's some sort of "loop" going on that ought not to be there.

So, merely changing from "require" to "require_once" would only be a cheap bandage to a potentially bigger root cause.

Hence the request for more information.

Without further information substantiating your "bug report", it suggests that perhaps your issue is really related to changes you've made elsewhere that need some refining.