Drupal Trick

From Objectif Client Inc
Revision as of 17:26, 21 October 2014 by Nicolas Rollin (talk | contribs) (Created page with "== Editor Configuration == To install ckeditor replace in ./sites/all/modules/wysiwyg/editors/ckeditor.inc <pre>if (preg_match('@version:\'(?:CKEditor )?([\d\.]+)(?:.+revision...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Editor Configuration

To install ckeditor replace in ./sites/all/modules/wysiwyg/editors/ckeditor.inc

if (preg_match('@version:\'(?:CKEditor )?([\d\.]+)(?:.+revision:\'([\d]+))?@', $line, $version)) {

with

if (preg_match('@version:[\"|\'](?:CKEditor )?([\d\.]+)(?:.+revision:[\"|\']([\d]+))?@', $line, $version)) {