1. In the function cache_set
static $subdirectoires;
... this variable did not seem initialized or used anywhere ??
2. In the function cache_create_directory, see this line.
@chmod($subdirectory, 0775); // Necessary for non-webserver users.
I did not see the var $subdirectory initialized anywhere. Will it work the way it is ??
......Correct me if I am wrong.
Thanks.
Comments
Comment #1
kenorb commentedYes, it's true.
It should be $dir instead of $subdirectory
Comment #2
kenorb commentedFixed in both branches:
5.x http://drupal.org/cvs?commit=190520 http://drupal.org/cvs?commit=190528
6.x http://drupal.org/cvs?commit=190522 http://drupal.org/cvs?commit=190526