Index: trunk/phase3/maintenance/storage/dumpRev.php |
— | — | @@ -62,7 +62,8 @@ |
63 | 63 | $text = gzinflate( $text ); |
64 | 64 | } |
65 | 65 | if ( in_array( 'object', $flags ) ) { |
66 | | - $text = unserialize( $text ); |
| 66 | + $obj = unserialize( $text ); |
| 67 | + $text = $obj->getText(); |
67 | 68 | } |
68 | 69 | |
69 | 70 | if ( is_object( $text ) ) { |