done, bug #: 3620.
https://trac.cakephp.org/ticket/3620#preview

A simple fix is:

Replace the line:

$files = scandir(JS);

With:

$dh  = opendir(JS);
while (false !== ($filename = readdir($dh))) {
     $files[] = $filename;
}
sort($files);
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to