Quotes before and after 2.2
Hi!
Before 2.2 version quote tag looks like
<
blockquote rel="Someuser">.
And now quote tag looks like
<
blockquote class="Quote" rel="Someuser">.
Because of this previous commens with quotes looks wrong. Grey background doesn't exist. Аnd it doesn't expandable.
How to update last comments and add sentance class="Quote"? Or force old quotes look right?
0
Comments
Example of it you can see here
I have solved it through sql update like
UPDATE
GDN_Comment
SET Body = REPLACE(Body, '<blockquote rel', '<blockquote class="Quote" rel').
And now all is OK.
nice
grep is your friend.