This commit is contained in:
joyqi 2013-11-04 10:42:52 +08:00
parent 1eba4e580f
commit b94c2d2a0a

View File

@ -4858,10 +4858,10 @@ else
if (!chunk.selection) {
if (isImage) {
chunk.selection = that.getString("imagename") || that.getString("imagedescription");
chunk.selection = that.getString("imagename").replace('_', '\\_') || that.getString("imagedescription");
}
else {
chunk.selection = that.getString("linkname") || that.getString("linkdescription");
chunk.selection = that.getString("linkname").replace('_', '\\_') || that.getString("linkdescription");
}
}
}