[svn r18482] FS#2867 - FCKEditor: A small correction within the php-integration file.

skala
Ivan Tcholakov 16 years ago
parent bfb0480a6b
commit 9604d28035
  1. 5
      main/inc/lib/fckeditor/fckeditor.php

@ -426,7 +426,10 @@ class FCKeditor
{ {
$os = php_uname(); $os = php_uname();
} }
$this->Config['IsWindowsServer'] = (strtoupper(substr($os, 0, 3 )) === 'WIN') ? true : false; if (strtoupper(substr($os, 0, 3 )) === 'WIN')
{
$this->Config['IsWindowsServer'] = true ;
}
/* /*
* The original code starts from here. * The original code starts from here.

Loading…
Cancel
Save