-
Notifications
You must be signed in to change notification settings - Fork 140
Closed
Labels
Description
On Version 3.5 there is a bug on line 1870, 1872 and 1874. (I suspect the bug is on version 3.x)
The line:
if ( !cachedFileExists( expandPath( defaultPath ) ) )
should be:
if ( !cachedFileExists( defaultPath ) )
Since cachedFileExists already performs an expandPath() inside the function. By doing this the cache is never created because of the double ExpandPath() being executed. After I fixed on my side, my website is running a lot faster now when "cacheFileExists = true"