I'm using 4.7 beta 4. I have file attachments enabled. When I submit a blog or forum topic, I click on "File Attachments, click the "Browse" button, navigate to my document, and click open. The path to my document is put in the edit box.
I click "Attach" and watch the cool spinny bar thing work it's magic. After it is done, the file name appears in the File Attachments list with the right path, right size. I make sure that "List" is checked, then I click the "Submit" button and everything seems good.
after upgrading my development install from 4.7b3 to 4.7b4
I'm facing some strange mysql behaviour...
this query does not return any result:
SELECT n.nid, n.created FROM node n WHERE n.type = 'story' AND n.status = 1 ORDER BY n.created DESC;
instead this one works and return latests nodes of type story:
SELECT n.nid, n.created FROM node n WHERE n.type like 'story' AND n.status = 1 ORDER BY n.created DESC;
The only differece between the two are n.type = 'story' in the first and n.type like 'story' in the second.