52
edits
| Line 372: | Line 372: | ||
* [264 - 269] instead of using $i and concatenating inside the loop, consider putting all the $row['UserEmail'] into an array, then use implode() | * [264 - 269] instead of using $i and concatenating inside the loop, consider putting all the $row['UserEmail'] into an array, then use implode() | ||
* [266] $email copies $row['UserEmail'] and then that's concatenated into $authors; $email is unnecessary | * [266] $email copies $row['UserEmail'] and then that's concatenated into $authors; $email is unnecessary | ||
* [279] $catid is unnecessary | * [279] $catid is unnecessary | ||
* [381] why is this performed again? we have the results from [367] already. | * [381] why is this performed again? we have the results from [367] already. | ||
edits