mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
Forbid colons, this Fixes #301
This commit is contained in:
parent
c3f728b2ed
commit
00c3281a02
1 changed files with 2 additions and 1 deletions
|
@ -43,7 +43,8 @@ var globalPads = {
|
||||||
* time, and allow us to "play back" these changes so legacy padIds can be found.
|
* time, and allow us to "play back" these changes so legacy padIds can be found.
|
||||||
*/
|
*/
|
||||||
var padIdTransforms = [
|
var padIdTransforms = [
|
||||||
[/\s+/g, '_']
|
[/\s+/g, '_'],
|
||||||
|
[/:+/g, '_']
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue