Changeset 683

Show
Ignore:
Timestamp:
01/01/10 12:15:09 (3 years ago)
Author:
alex94040
Message:

FCKEditor: Fixing issue with GetAttributes?() compatibility with parent class (for E_STRICT). Details:  http://qcu.be/content/fckeditor-plugin-problems-php-versions-52x-and-53.

Location:
plugins/QFCKEditor
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • plugins/QFCKEditor/source/includes/QFCKEditor.class.php

    r306 r683  
    179179                } 
    180180 
    181                 public function GetAttributes() { 
    182                         $strToReturn = parent::GetAttributes(); 
     181                public function GetAttributes($blnIncludeCustom = true, $blnIncludeAction = true) { 
     182                        $strToReturn = parent::GetAttributes($blnIncludeCustom, $blnIncludeAction); 
    183183                        if ($this->strTextMode == QFCKeditorTextMode::Plain) { 
    184184                                if (!$this->blnWrap) 
  • plugins/QFCKEditor/source/install.php

    r308 r683  
    55$objPlugin->strDescription = 'Rich-text, WYSIWYG editor for QCubed - a plugin that bridges QCubed and 
    66        FCKEditor together. Use it anywhere you would use an HTML text area / multiline QTextBox.'; 
    7 $objPlugin->strVersion = "0.1"; 
     7$objPlugin->strVersion = "0.11"; 
    88$objPlugin->strPlatformVersion = "1.1"; 
    99$objPlugin->strAuthorName = "tronics"; // Restructured into a plugin by alex94040