Show
Ignore:
Timestamp:
2008-02-21 10:45:48 (7 months ago)
Author:
wwalc
Message:

Minor fix for #1488 (2): added dots at the end of comments.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/fckeditor_php4.php

    r1577 r1578  
    2929{ 
    3030        /** 
    31          * Name of the FCKeditor instance 
     31         * Name of the FCKeditor instance. 
    3232         * 
    3333         * @access protected 
     
    3636        var $InstanceName ; 
    3737        /** 
    38          * Path to FCKeditor relative to the document root 
     38         * Path to FCKeditor relative to the document root. 
    3939         * 
    4040         * @var string 
     
    4242        var $BasePath ; 
    4343        /** 
    44          * Width of the FCKeditor 
     44         * Width of the FCKeditor. 
    4545         * Examples: 100%, 600 
    4646         * 
     
    4949        var $Width ; 
    5050        /** 
    51          * Height of the FCKeditor 
     51         * Height of the FCKeditor. 
    5252         * Examples: 400, 50% 
    5353         * 
     
    5656        var $Height ; 
    5757        /** 
    58          * Name of the toolbar to load 
     58         * Name of the toolbar to load. 
    5959         * 
    6060         * @var string 
     
    6262        var $ToolbarSet ; 
    6363        /** 
    64          * Initial value 
     64         * Initial value. 
    6565         * 
    6666         * @var string 
     
    6868        var $Value ; 
    6969        /** 
    70          * This is where additional configuration can be passed 
     70         * This is where additional configuration can be passed. 
    7171         * Example: 
    7272         * $oFCKeditor->Config['EnterMode'] = 'br'; 
     
    7777 
    7878        /** 
    79          * Main Constructor 
     79         * Main Constructor. 
    8080         * Refer to the _samples/php directory for examples. 
    8181         * 
     
    9595 
    9696        /** 
    97          * Display FCKeditor 
     97         * Display FCKeditor. 
    9898         * 
    9999         */ 
     
    104104 
    105105        /** 
    106          * Return the HTML code required to run FCKeditor 
     106         * Return the HTML code required to run FCKeditor. 
    107107         * 
    108108         * @return string 
     
    159159 
    160160        /** 
    161          * Returns true if browser is compatible with FCKeditor 
     161         * Returns true if browser is compatible with FCKeditor. 
    162162         * 
    163163         * @return boolean 
     
    169169 
    170170        /** 
    171          * Get settings from Config array as a single string 
     171         * Get settings from Config array as a single string. 
    172172         * 
    173173         * @access protected 
     
    199199        /** 
    200200         * Encode characters that may break the configuration string 
    201          * generated by GetConfigFieldString() 
     201         * generated by GetConfigFieldString(). 
    202202         * 
    203203         * @access protected