Project

General

Profile

« Previous | Next » 

Revision 1038

Added by Matthias almost 15 years ago

Updated FCKEditor to Version 2.6.4.1 (ticket #738) (Thanks to doc)

View differences:

basexml.php
65 65

  
66 66
function SendError( $number, $text )
67 67
{
68
	if ( $_GET['Command'] == 'FileUpload' )
69
		SendUploadResults( $number, "", "", $text ) ;
70

  
68 71
	if ( isset( $GLOBALS['HeaderSent'] ) && $GLOBALS['HeaderSent'] )
69 72
	{
70 73
		SendErrorNode( $number, $text ) ;
......
88 91

  
89 92
function SendErrorNode(  $number, $text )
90 93
{
91
	echo '<Error number="' . $number . '" text="' . htmlspecialchars( $text ) . '" />' ;
94
	if ($text)
95
		echo '<Error number="' . $number . '" text="' . htmlspecialchars( $text ) . '" />' ;
96
	else
97
		echo '<Error number="' . $number . '" />' ;
92 98
}
93 99
?>

Also available in: Unified diff