Make WordPress Core

Ticket #1306: quicktags-dict-fix-rev2.patch

File quicktags-dict-fix-rev2.patch, 495 bytes (added by h3h, 20 years ago)
  • quicktags.js

     
    251251        if (word == '') {
    252252                word = prompt('Enter a word to look up:', '');
    253253        }
    254         if (word != '') {
     254        if (word !== null && /^\w[\w ]*$/.test(word)) {
    255255                window.open('http://www.answers.com/' + escape(word));
    256256        }
    257257}
     
    387387                                + '" />';
    388388                edInsertContent(myField, myValue);
    389389        }
    390 }
    391  No newline at end of file
     390}
     391