]> granicus.if.org Git - php/commitdiff
MFH: Fixed bug #39265 (Fixed path handling inside mod_files.sh).
authorIlia Alshanetsky <iliaa@php.net>
Fri, 3 Nov 2006 13:19:07 +0000 (13:19 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Fri, 3 Nov 2006 13:19:07 +0000 (13:19 +0000)
NEWS
ext/session/mod_files.sh

diff --git a/NEWS b/NEWS
index a3a81d134a96e8885581a7038eb604683310346d..79add329cbb53799fc9c884a00dfc95e51a8b5e7 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
 PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2007, PHP 5.2.1
+- Fixed bug #39265 (Fixed path handling inside mod_files.sh). 
+  (michal dot taborsky at gmail dot com, Ilia)
 - Fixed bug #38680 (Added missing handling of basic types in json_decode).
   (Ilia) 
 
index 6d9d5d9497b3ef83a3e7a6354faa558064235a4e..1d2672847c6e8c2c773f83a8b053d16b06b7857c 100644 (file)
@@ -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