11-28-2016, 10:36 PM
Checked both files, I haven't modified anything in them. Went back through my repos commit history to see if I accidentally made a change I shouldn't have, couldn't find anything. Though I am sure I have done something somewhere haha, I would assume this wouldn't just appear out of nowhere.
I have solved it (I think) though. Just made a small re-write to the argument and the error has disappeared and everything still appears to be functioning as intended. Here's my new foreach statement:
I have solved it (I think) though. Just made a small re-write to the argument and the error has disappeared and everything still appears to be functioning as intended. Here's my new foreach statement:
Code:
foreach ($paths as $path){
Code:
$rows=getPathPhpFiles($abs_us_root,$us_url_root,$path);
Code:
foreach ((array)$rows as $row){
Code:
$pages[]=$row;
Code:
}
Code:
}