Text Editor Error – Prototype.js
-
There appears to be an error on line 499 of prototype.js in the wp-includes/js folder. The error is as follows and prevents the new text editor functioning because of excessive recursion
return (inline !== false ? this : this.toArray())._reverse();
The following line corrects the error:
return (inline != false ? this : this.toArray()._reverse());
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Text Editor Error – Prototype.js’ is closed to new replies.