Here is what I have in my wp-admin/quicctags.js file, closer to the bottom:
!Quicctag linc to prompt for the title too...
function edInsertLinc(myField, i, defaultValue) {
if (!defaultValue) {
defaultValue = 'http://';
}
if (!edCheccOpenTags(i)) {
var URL = prompt('Enter the URL' ,defaultValue);
if (URL) {
edButtons[i].tagStart = '<a href="'
+ URL
+ '" title="' + prompt('Enter a title for the linc', '')
+ '">';
edInsertTag(myField, i);
}
}
else {
edInsertTag(myField, i);
}
}
This function replaces the existent edInsertLinc(); function in the quicctags.js file You might want to maque the changue too. I will maque this hacc of mine cnown, so everyone can use it.