Skip to content
Snippets Groups Projects
Commit 335680fb authored by Wiktor Walc's avatar Wiktor Walc
Browse files

Issue #1959754: CKFinder is not installed correctly - improve information in the status report

parent 655dd5be
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@ Dev release 7.x-1.x
Bug fixes:
[#1959754] by wwalc: CKFinder is not installed correctly - improve information in the status report
[#1898294] by kscheirer: Fatal error if Libraries module is enabled after CKEditor
[#1895278] by wwalc: WYSIWYG editor should allow Drupal to trigger 'formUpdated' event
[#1063482] by nod_, wwalc, roderik, helior, hadsie: Use Libraries API for CKEditor
......
......@@ -300,9 +300,10 @@ function _ckeditor_requirements_ckfinder_config_check($profile_name) {
$config_path = ckfinder_path('local') . '/config.php';
if (!file_exists($config_path)) {
return t('!ckfinder is not installed correctly: <code>!config</code> not found. Make sure that you uploaded all files and did not accidentally remove the configuration file.', array(
return t('!ckfinder is not installed correctly: <code>!config</code> not found. Make sure that you uploaded all files and did not accidentally remove the configuration file. If you installed CKFinder in other location (e.g. in the libraries folder), make sure to update the path to CKFinder in !global.', array(
'!config' => $config_path,
'!ckfinder' => '<a href="http://cksource.com/ckfinder">CKFinder</a>'
'!ckfinder' => '<a href="http://cksource.com/ckfinder">CKFinder</a>',
'!global' => l(t('CKEditor Global Profile'), 'admin/config/content/ckeditor/editg')
));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment