Skip to content

Commit

Permalink
Fix error 500
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed May 1, 2019
1 parent 2136bce commit 3bda9be
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion htdocs/admin/dolistore/class/dolistore.class.php
Expand Up @@ -17,7 +17,10 @@
*/

include_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
include_once DOL_DOCUMENT_ROOT.'/admin/dolistore/class/PSWebServiceLibrary.class.php';
if (! class_exists('PrestaShopWebservice')) // We keep this because some modules add this lib too into a different path. This is to avoid "Cannot declare class PrestaShopWebservice" errors.
{
include_once DOL_DOCUMENT_ROOT.'/admin/dolistore/class/PSWebServiceLibrary.class.php';
}


/**
Expand Down

0 comments on commit 3bda9be

Please sign in to comment.