1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-28 08:40:41 +01:00

Fix parallelo (#130)

This commit is contained in:
Thomas Zilio 2018-01-27 11:50:29 +01:00
parent bdbe0e9a01
commit b1114bd98c

View File

@ -106,7 +106,8 @@ class Update
foreach ($modules as $value) {
$infos = pathinfo($value);
$module = end(explode('/', dirname($infos['dirname'])));
$temp = explode('/', dirname($infos['dirname']));
$module = end($temp);
$value = str_replace('_', '.', $infos['filename']);