One of my weblogs has a relationship with another weblog (which is in a different site). When I submit a value for this relationship using the dropdown menu, a (seemingly) unrelated integer is stored in the database. Yet somehow when I reload the Edit form, the correct item is selected in the dropdown menu.
I’m totally baffled.
So, in the Edit form, I’m seeing:
<select name='field_id_73' class='select'>
<option value='124' selected='selected' dir='ltr' >Robert Mitchell</option>
...(more options)...
</select>And when I submit that form, what actually gets stored in MySQL is a row that looks like this:
entry_id: 104
field_id_73: 742 # WTF?What’s more, it seems that each time I submit the Edit form, the integer stored in field_id_73 for that entry increments by some arbitrary amount. Just now it went from 742 to 745.
Help, please! My production deadline in is 2 hours.
Best,
Ben