• Resolved nicmare

    (@nicmare)


    it serializes arrays which become unreadable in excel.
    therefore i changed line 545 from:
    $value = is_array( $value ) ? serialize( $value ) : $value; // maybe serialize the value ##
    to
    $value = is_array( $value ) ? implode(", ", $value ) : $value; // maybe serialize the value ##

    https://ww.wp.xz.cn/plugins/export-user-data/

Viewing 1 replies (of 1 total)
  • Plugin Author qstudio

    (@qlstudio)

    Thanks, for the suggestions – I’m testing these and if all works well, they’ll be in the next release.

Viewing 1 replies (of 1 total)

The topic ‘serialized arrays’ is closed to new replies.