this statement in prototype.js (line 2457):
else element.innerHTML = content.stripScripts();
gives an error : "unknown runtime error" in IE
To solve this problem, just make below changes in your code in all js
Change the statement from
this.month_year_label.update(Date.months[m]);
to
this.month_year_label.update().insert(Date.months[m]);
only change is:
instead of using method "update", use "update().insert"
Install / Upgrade to OpenSSH 6.6p on Ubuntu 12.04 and 13.10
-
Hey all, Had to upgrade OpenSSH to 6.6p for PCI Compliance. Found that
12.04 does not support OpenSSH 6.6p via direct upgrade. So Had to do it
manually. Af...
10 years ago