[Plugin: CKEditor For WordPress] would this be better
-
Hi,
Line 30 in ckeditorclass.php is giving me problems:
if ( $_SERVER[‘HTTPS’] ) {
$siteurl = str_replace(‘http:’, ‘https:’, $siteurl);
$this->plugin_path = str_replace(‘http:’, ‘https:’, $this->plugin_path);
}
It works for me if I change it to this:if ( isset($_SERVER[‘HTTPS’]) ) {
if ( ‘on’ == strtolower($_SERVER[‘HTTPS’]) ) {
$siteurl = str_replace(‘http:’, ‘https:’, $siteurl);
$this->plugin_path = str_replace(‘http:’, ‘https:’, $this->plugin_path);
}
}Maybe this helps development a bit, Maybe not.
The topic ‘[Plugin: CKEditor For WordPress] would this be better’ is closed to new replies.