| @@ 1423-1430 (lines=8) @@ | ||
| 1420 | 'filename' => $this_action['destination'] |
|
| 1421 | ); |
|
| 1422 | } |
|
| 1423 | elseif ($actionType == 'remove-dir') |
|
| 1424 | { |
|
| 1425 | if (!is_writable($this_action['filename']) && file_exists($this_action['filename'])) |
|
| 1426 | $return[] = array( |
|
| 1427 | 'type' => 'chmod', |
|
| 1428 | 'filename' => $this_action['filename'] |
|
| 1429 | ); |
|
| 1430 | } |
|
| 1431 | elseif ($actionType == 'remove-file') |
|
| 1432 | { |
|
| 1433 | if (!is_writable($this_action['filename']) && file_exists($this_action['filename'])) |
|
| @@ 1431-1438 (lines=8) @@ | ||
| 1428 | 'filename' => $this_action['filename'] |
|
| 1429 | ); |
|
| 1430 | } |
|
| 1431 | elseif ($actionType == 'remove-file') |
|
| 1432 | { |
|
| 1433 | if (!is_writable($this_action['filename']) && file_exists($this_action['filename'])) |
|
| 1434 | $return[] = array( |
|
| 1435 | 'type' => 'chmod', |
|
| 1436 | 'filename' => $this_action['filename'] |
|
| 1437 | ); |
|
| 1438 | } |
|
| 1439 | } |
|
| 1440 | else |
|
| 1441 | { |
|