diff options
author | Christian Schneider | 2021-01-13 16:21:03 +0100 |
---|---|---|
committer | Christian Schneider | 2021-01-13 16:21:03 +0100 |
commit | 4f7f5e4b1fd1077ad134860b32203810ef24c0ce (patch) | |
tree | ad1f7ce97388ff1ac4b11e47960ddebe2ae1fa0f /it_auto_prepend.php | |
parent | b1548c21528cc8158f09a3acaf6fb8ef51ae7e5f (diff) | |
download | itools-4f7f5e4b1fd1077ad134860b32203810ef24c0ce.tar.gz itools-4f7f5e4b1fd1077ad134860b32203810ef24c0ce.tar.bz2 itools-4f7f5e4b1fd1077ad134860b32203810ef24c0ce.zip |
Unified join to always use implode
Diffstat (limited to 'it_auto_prepend.php')
-rw-r--r-- | it_auto_prepend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_auto_prepend.php b/it_auto_prepend.php index 8589f9f..c758226 100644 --- a/it_auto_prepend.php +++ b/it_auto_prepend.php @@ -148,7 +148,7 @@ function it_convert($source) $parts = explode("/", dirname($converted)); for ($i = 1; $i <= count($parts); $i++) - @mkdir(join("/", array_slice($parts, 0, $i)), 0700); + @mkdir(implode("/", array_slice($parts, 0, $i)), 0700); if ($changed = $converter->changes) { |