npr / nprapi-wordpress

Access the NPR API from within WordPress. This repository is no longer being maintained. See the README for more information.
GNU General Public License v2.0
13 stars 30 forks source link

Fixed bug related to $my_array #28

Closed mikeschinkel closed 8 years ago

mikeschinkel commented 8 years ago

The code that collects up subelements of a story — specifically ->parent and ->byline but potentially others — had a bug that copies a parent NPRMLElement into a Byline array of NPRMLElements because it does not clear the temporary $my_array. This logic was in two places.

There really was no need for a temp var so I just inlined the creation of the array and assigned back to the same var.