| @@ 368-372 (lines=5) @@ | ||
| 365 | $directModuleInstall = TRUE; |
|
| 366 | $arrUnwritableDir = array(); |
|
| 367 | $output = $this->isWritableDir($package->path); |
|
| 368 | if($output->toBool()==FALSE) |
|
| 369 | { |
|
| 370 | $directModuleInstall = FALSE; |
|
| 371 | $arrUnwritableDir[] = $output->get('path'); |
|
| 372 | } |
|
| 373 | ||
| 374 | foreach($package->depends as $dep) |
|
| 375 | { |
|
| @@ 377-381 (lines=5) @@ | ||
| 374 | foreach($package->depends as $dep) |
|
| 375 | { |
|
| 376 | $output = $this->isWritableDir($dep->path); |
|
| 377 | if($output->toBool()==FALSE) |
|
| 378 | { |
|
| 379 | $directModuleInstall = FALSE; |
|
| 380 | $arrUnwritableDir[] = $output->get('path'); |
|
| 381 | } |
|
| 382 | } |
|
| 383 | ||
| 384 | if($directModuleInstall==FALSE) |
|