Posted by dczepierga on December 17, 2012 at 12:15pm
3 followers
Jump to:
| Project: | CKEditor - WYSIWYG HTML editor |
| Version: | 7.x-1.x-dev |
| Component: | Code |
| Category: | task |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
From CKEditor v4 is not possible to use more than 1 skin on the page, so this option is moved to Global Profile - from now it wouldn't be possible to use 2 diffrent skins by switching text format in textarea.
Comments
#1
Changes commited to GIT (diff).
#2
#3
<em>instead, please.!skinqualifies for a security issue.editglink has for sure no trailing/+ drupal_set_message(t(+ 'The `CKEditor Global Profile` profile is using `!skin` skin which cannot be found. Please !profile_settings.', array(
+ '!skin' => $global_profile->settings['skin'],
+ '!profile_settings' => l(t('update your settings'), 'admin/config/content/ckeditor/editg/')
+ )
Correct example:
<?phpdrupal_set_message(t('The <em>CKEditor Global Profile</em> profile is using %skin skin which cannot be found. Please <a href="@profile_settings">update your settings</a>.', array('%skin' => $global_profile->settings['skin'], '@profile_settings' => url('admin/config/content/ckeditor/editg'));
?>
#4
@hass, really thx for help.
All changes commited to GIT (diff)
#5