Correct- you’re running a slightly modified mod.weblog.php. Well- for the record:
@@ -545,8 +556,10 @@
$entry_data = array();
- foreach($query->result as $row)
- {
+ for ($i = 0, $total = count($query->result); $i < $total; $i++)
+ {
+ $row = array_shift($query->result);
+
/* --------------------------------------
/* If the data is emptied (cache cleared or first process), then we
/* rebuild it with fresh data so processing can continue.
I replaced the foreach with the for and $row= combo. I can’t SWEAR this will make it into the next release, in which case, you’d want to redo the hack. It WILL make it into a release- but I want to put it through more testing as well as see if there’s another spot I can make a similar change.
Make sense?