View Single Post
  #34  
Old 07-11-2011, 12:58 PM
  neaisha's Avatar 
neaisha neaisha is offline
 

eXpert
  
Join Date: May 2006
Posts: 276
 

Default Re: Order ID Random Incrementation...

Quote:
Originally Posted by Sylvain
I got to work with 4.4.3 In 4.4.x the code that handles the "order_message" mode processing is located in the "<xcart_dir>/include/checkout_init.php".

On line 511 change:
$location[] = array(func_get_langvar_by_name('lbl_order_processe d'), '');

for:

include $xcart_dir."/include/increment.php";
$location[] = array(func_get_langvar_by_name("lbl_order_processe d"), '');



$location[] = include $xcart_dir . '/include/increment.php';
array(func_get_langvar_by_name('lbl_order_processe d'), '');

^works instead of...

include $xcart_dir."/include/increment.php";
$location[] = array(func_get_langvar_by_name("lbl_order_processe d"), '');
__________________
X-Cart Gold 4.4.3
--------------------------------------
Reply With Quote