diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-11-03 13:18:19 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-11-03 13:18:19 +0000 |
commit | b0f8e77d17fea058d50b84d487de85d40e98218e (patch) | |
tree | 60b3ffdc154fb45795c85b0f0be6190fdbf39963 | |
parent | d9419bc989ce0b12e104a4998aed8cbdd17eab15 (diff) | |
download | php-git-b0f8e77d17fea058d50b84d487de85d40e98218e.tar.gz |
Fixed bug #39265 (Fixed path handling inside mod_files.sh)
# Patch by michal dot taborsky at gmail dot com
-rw-r--r-- | ext/session/mod_files.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/mod_files.sh b/ext/session/mod_files.sh index 6d9d5d9497..1d2672847c 100644 --- a/ext/session/mod_files.sh +++ b/ext/session/mod_files.sh @@ -20,5 +20,5 @@ fi for i in $hash_chars; do newpath="$1/$i" mkdir $newpath || exit 1 - sh $0 $newpath `expr $2 - 1 $3` + sh $0 $newpath `expr $2 - 1` $3 done |