Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F871567
fckeditor.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, May 7, 10:29 PM
Size
1 KB
Mime Type
text/x-php
Expires
Fri, May 9, 10:29 PM (1 d, 3 h)
Engine
blob
Format
Raw Data
Handle
615324
Attached To
rINP In-Portal
fckeditor.php
View Options
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* This is the integration file for PHP (All versions).
*
* It loads the correct integration file based on the PHP version (avoiding
* strict error messages with PHP 5).
*/
$fck_folder
=
realpath
(
dirname
(
__FILE__
)
);
if
(
!
function_exists
(
'version_compare'
)
||
version_compare
(
phpversion
(),
'5'
,
'<'
)
)
{
include_once
(
$fck_folder
.
DIRECTORY_SEPARATOR
.
'fckeditor_php4.php'
)
;
}
else
{
include_once
(
$fck_folder
.
DIRECTORY_SEPARATOR
.
'fckeditor_php5.php'
)
;
}
Event Timeline
Log In to Comment