Revision 1827
Added by Dietmar almost 12 years ago
- force FCKeditor to work with Firefox 17
branches/2.8.x/CHANGELOG | ||
---|---|---|
14 | 14 |
|
15 | 15 |
|
16 | 16 |
20 Nov-2012 Build 1826 Dietmar Woellbrink (Luisehahne) |
17 |
# force FCKeditor to work with Firefox 17 |
|
18 |
20 Nov-2012 Build 1826 Dietmar Woellbrink (Luisehahne) |
|
17 | 19 |
# fixed to big preview images in media |
18 | 20 |
20 Nov-2012 Build 1825 Dietmar Woellbrink (Luisehahne) |
19 | 21 |
! update page settings, add save & back Button, add extended hide/show |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
51 | 51 |
|
52 | 52 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
53 | 53 |
if(!defined('VERSION')) define('VERSION', '2.8.3'); |
54 |
if(!defined('REVISION')) define('REVISION', '1826');
|
|
54 |
if(!defined('REVISION')) define('REVISION', '1827');
|
|
55 | 55 |
if(!defined('SP')) define('SP', ''); |
branches/2.8.x/wb/modules/fckeditor/info.php | ||
---|---|---|
19 | 19 |
$module_directory = 'fckeditor'; |
20 | 20 |
$module_name = 'FCKeditor'; |
21 | 21 |
$module_function = 'WYSIWYG'; |
22 |
$module_version = '2.9.7.1';
|
|
22 |
$module_version = '2.9.7.2';
|
|
23 | 23 |
$module_platform = '2.7 | 2.8.x'; |
24 | 24 |
$module_requirements = 'PHP 4.3.11 or higher, WB 2.7 or higher'; |
25 | 25 |
$module_author = 'Christian Sommer, P. Widlund, S. Braunewell, M. Gallas, Wouldlouper, Aldus, Luisehahne'; |
branches/2.8.x/wb/modules/fckeditor/include.php | ||
---|---|---|
15 | 15 |
* @lastmodified $Date$ |
16 | 16 |
* |
17 | 17 |
*/ |
18 |
// Must include code to stop this file being access directly |
|
19 |
if(defined('WB_PATH') == false) { die("Cannot access this file directly"); } |
|
18 |
/* -------------------------------------------------------- */ |
|
19 |
// Must include code to stop this file being accessed directly |
|
20 |
if(!defined('WB_PATH')) { |
|
20 | 21 |
|
22 |
require_once(dirname(dirname(dirname(__FILE__))).'/framework/globalExceptionHandler.php'); |
|
23 |
throw new IllegalFileException(); |
|
24 |
} |
|
25 |
/* -------------------------------------------------------- */ |
|
26 |
|
|
21 | 27 |
function reverse_htmlentities($mixed) { |
22 | 28 |
$mixed = str_replace(array('>','<','"','&'), array('>','<','"','&'), $mixed); |
23 | 29 |
return $mixed; |
branches/2.8.x/wb/modules/fckeditor/fckeditor/fckeditor_php5.php | ||
---|---|---|
55 | 55 |
else if ( strpos($sAgent, 'Gecko/') !== false ) |
56 | 56 |
{ |
57 | 57 |
$iVersion = (int)substr($sAgent, strpos($sAgent, 'Gecko/') + 6, 8) ; |
58 |
return ($iVersion >= 20030210) ; |
|
58 |
return ($iVersion >= 3.5) ; |
|
59 |
// return ($iVersion >= 20030210) ; |
|
59 | 60 |
} |
60 | 61 |
else if ( strpos($sAgent, 'Opera/') !== false ) |
61 | 62 |
{ |
Also available in: Unified diff