You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running 1.4.4 (just updated from 1.4.3 a few minutes ago) and see the big "WP" image in my Authors column with the author name as N/A. I also notice that many of my records show a small "s" under the Author name, where I expect to see their assigned role.
Looking through the stream_meta.meta_value records shows me that in every one of the "s" cases, the serialized data is cut off by the 200 varchar limit on that column. It doesn't matter what the actual role is, they all show up with <small>s</small> when the page is rendered.
Here's a redacted version of the data for the image, taking out identifying names and emails:
s:214:"a:5:{s:10:"user_email";s:21:"dsmith@example.com";s:12:"display_name";s:35:"David S. - ";s:10:"user_login";s:21:"dsmith@example.com";s:15:"user_role_label";s:7:"Sup
So perhaps the quick fix is to maybe_unserialize() all the things. But I'm perplexed as to why deserialization fails on select installs, however. It's not either that the serialized data is malformed, because then false would be returned. Unless, perhaps, the is_serialized() check is itself returning false, in which case the raw string would be returned by maybe_unserialize() and so adding more maybe_unserialize() wouldn't help at all.
I'm running 1.4.4 (just updated from 1.4.3 a few minutes ago) and see the big "WP" image in my Authors column with the author name as N/A. I also notice that many of my records show a small "s" under the Author name, where I expect to see their assigned role.
Looking through the
stream_meta.meta_value
records shows me that in every one of the "s" cases, the serialized data is cut off by the 200 varchar limit on that column. It doesn't matter what the actual role is, they all show up with<small>s</small>
when the page is rendered.Here's a redacted version of the data for the image, taking out identifying names and emails:
The text was updated successfully, but these errors were encountered: