Setting the List display configuration option to Node body produces the word "Array" on the listing.
Module line 376 is at fault. Current code:
$cell = array('data' => array(l(.....
Should not have array in front of the link. Corrected code:
$cell = array('data' => l(....
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | classified_body_array-1397422-2.patch | 2.57 KB | fgm |
Comments
Comment #1
fgmConfirmed. Thanks for the report: can you provide a patch including a simpletest that fails on the current code and succeeds after your fix ?
Comment #2
fgmNevermind, here is a test that fails on RC2 and passes with the included patch.
Comment #3
fgmTest OK.
Checked on D7: bug has no equivalent, because body is built differently (see
_classified_list_nodes()for implementation).Committed to D6, thanks.
Comment #5
fgmStill a problem when node has expired: "Array' reappears.
Comment #6
fgmFixed. Note that expired ads that have not yet been unpublished are still listed, but with the node-unpublished class until they get unpublished by the next cron run after they expire.