// fix bug move helper list action tpl (PSSV-94)

This commit is contained in:
lLefevre
2011-10-27 11:15:10 +00:00
parent abfb0cda7d
commit 2b7340d9d9
@@ -975,7 +975,7 @@ class AdminStockManagementControllerCore extends AdminController
'action' => self::$cache_lang['AddStock'],
));
return $this->context->smarty->fetch(_PS_ADMIN_DIR_.'/themes/template/list_action_addstock.tpl');
return $this->context->smarty->fetch(_PS_ADMIN_DIR_.'/themes/template/helper/list/list_action_addstock.tpl');
}
/**
@@ -996,7 +996,7 @@ class AdminStockManagementControllerCore extends AdminController
'action' => self::$cache_lang['RemoveStock'],
));
return $this->context->smarty->fetch(_PS_ADMIN_DIR_.'/themes/template/list_action_removestock.tpl');
return $this->context->smarty->fetch(_PS_ADMIN_DIR_.'/themes/template/helper/list/list_action_removestock.tpl');
}
/**
@@ -1017,6 +1017,6 @@ class AdminStockManagementControllerCore extends AdminController
'action' => self::$cache_lang['TransferStock'],
));
return $this->context->smarty->fetch(_PS_ADMIN_DIR_.'/themes/template/list_action_transferstock.tpl');
return $this->context->smarty->fetch(_PS_ADMIN_DIR_.'/themes/template/helper/list/list_action_transferstock.tpl');
}
}