Coding error in CatListDisplayer.php
-
There is a coding error in CatListDisplayer.php on line 82
foreach ($templatePath as $file){
$templatePath is a string!
This line is suppose to process each file in the $templatePath, so I expect the line should be:
foreach (scandir($templatePath) as $file){
The error causes a php error when you select Appearance/Widgets on the Dashboard.
Tony
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Coding error in CatListDisplayer.php’ is closed to new replies.