I’m not sure if this is a safecracker issue or not, but I think it is. I have a very simple safecracker form to allow certain users to change the status of the entry that they are viewing. This worked previously, but is not working now. The last time I checked it I was running safecracker build 20100913 and it was working. I upgraded to 20100924 the day it came out and hadn’t checked this form since then, but it’s not longer working. I haven’t changed anything else in the code, so my best guess is that it’s a bug that might have been introduced in 20100924. What’s happening now is that when you submit the status change, it always changes the status to “Open”, no matter what is chosen in the drop down menu. Here’s the code I’m using:
{if group_id == "1"}
{exp:safecracker channel="channel_name" return="group/template/ENTRY_ID" entry_id="{segment_3}"}
<input type="hidden" name="entry_date" value="{entry_date}" />
{status_menu}
<select name="status" id="status">
{select_options}
</select>
{/status_menu}
<input type="submit" name="submit" value="Submit" />
{/exp:safecracker}
{/if}
Any idea if this is a safecracker issue?
Thanks!