Merge branch 'fix-resetpassword-include' into develop
This commit is contained in:
commit
161673618e
@ -2,7 +2,12 @@
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
|
||||
require_once(PS_ADMIN_DIR . '/helpers/HelperFormBootstrap.php');
|
||||
if (defined('PS_ADMIN_DIR'))
|
||||
{
|
||||
require_once(PS_ADMIN_DIR . '/helpers/HelperFormBootstrap.php');
|
||||
} else {
|
||||
require_once(realpath(dirname(__FILE__) .'/../../').'/adm/helpers/HelperFormBootstrap.php');
|
||||
}
|
||||
|
||||
class Ant_Resetbopassword extends Module
|
||||
{
|
||||
|
@ -568,7 +568,7 @@ class AdminPrivateSalesSales extends AdminTab {
|
||||
array(
|
||||
'label' => $this->l('Livraison spécifique'),
|
||||
'value' => 9,
|
||||
'selected' => ($this->cursale!==NULL && $this->cursale->delivery_delay== 8?true:false)
|
||||
'selected' => ($this->cursale!==NULL && $this->cursale->delivery_delay== 9?true:false)
|
||||
),
|
||||
);
|
||||
// Delivery delay
|
||||
|
Loading…
Reference in New Issue
Block a user