When creating quote its anchor href property is set to "undefined". E.g.
<blockquote><a href="undefined">Nataly said</a>: some text some text some text some text </blockquote>
Found a solution:
in quoteselection.js change line 32:
url: meta.find(".Permalink a").attr("href"),
to
url: meta.find("a.Permalink").attr("href"),
Comments
Found a solution:
in quoteselection.js change line 32:
to