Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
drupal.org
ckeditor_link
Commits
de251aa8
Commit
de251aa8
authored
Aug 09, 2010
by
Henri MEDOT
Browse files
Fixed "Error alert when linke to node with parenthesis is title"
parent
1e4925ac
Changes
2
Hide whitespace changes
Inline
Side-by-side
ckeditor_link.info
View file @
de251aa8
;
$
Id
$
name
=
CKEditor
Link
description
=
Easily
create
links
to
Drupal
internal
paths
through
CKEditor
.
package
=
User
interface
core
=
6.
x
\ No newline at end of file
plugins/link/plugin.js
View file @
de251aa8
...
...
@@ -32,7 +32,7 @@
var
extractPath
=
function
(
value
)
{
value
=
CKEDITOR
.
tools
.
trim
(
value
);
var
match
;
match
=
/
\((
.
*
?)\)
$/i
.
exec
(
value
);
match
=
/
\((
[^\(]
*
?)\)
$/i
.
exec
(
value
);
if
(
match
&&
match
[
1
])
{
value
=
match
[
1
];
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment