Closed (fixed)
Project:
Quicklink
Version:
7.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
11 Apr 2019 at 16:51 UTC
Updated:
29 Apr 2019 at 15:14 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
joelstein commentedThis patch fixes the issue by inverting the faulty logic.
Comment #3
mherchelThanks :) On way back from DrupalCon now. Will be reviewing it this weekend!
Comment #4
mherchelLooking in xdebug, it seems like we need to do more than check to see if the content type is in the array
Comment #5
mherchelAttached is an updated patch that checks for
$no_load_content_types[$node->type]. Take a look?Comment #6
mherchelRe-rolled patch against latest HEAD
Comment #8
mherchelJust finished more testing of this feature. I'm happy with it. Committing. Thanks @joelstein
Comment #9
joelstein commentedGreat, thanks for getting this in!
Just an FYI, "in_array()" checks if the value is in the array, not the key. So the patch I submitted should work just fine; but what you have also works. :)