Changeset 5275


Ignore:
Timestamp:
2010-03-23 18:27:49 (23 months ago)
Author:
garry.yao
Message:

#4348: Adding developer friendly message for failed base path detection.

Location:
CKEditor/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CKEditor/trunk/CHANGES.html

    r5274 r5275  
    9090                <li><a href="http://dev.fckeditor.net/ticket/5170">#5170</a> : Firefox does not insert  text into element properly.</li> 
    9191                <li><a href="http://dev.fckeditor.net/ticket/4026">#4026</a> : Office2003 skin has no toolbar button borders in High Contrast in IE7.</li> 
     92                <li><a href="http://dev.fckeditor.net/ticket/4348">#4348</a> : There should have exception thrown when 'CKEDITOR_BASEPATH' could be figured out automatically.</li> 
    9293        </ul> 
    9394        <h3> 
  • CKEditor/trunk/_source/core/ckeditor_base.js

    r4858 r5275  
    1 /* 
     1/* 
    22Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. 
    33For licensing, see LICENSE.html or http://ckeditor.com/license 
     
    137137                                } 
    138138 
     139                                if( !path ) 
     140                                                throw 'The CKEditor installation path could not be automatically detected. Please set the global variable "CKEDITOR_BASEPATH" before creating editor instances.' 
     141 
    139142                                return path; 
    140143                        })(), 
Note: See TracChangeset for help on using the changeset viewer.
© 2003 – 2011 CKSource – Frederico Knabben. All rights reserved. | Terms of use | Privacy policy