mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 00:09:06 +01:00
Fix bug on LSformElement :: text -> getDependsFields() when using modifiers characters
This commit is contained in:
parent
8dd1d0e24c
commit
fc6399fb13
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ var LSformElement_text = new Class({
|
|||
getDependsFields: function(format) {
|
||||
var retval=new Array();
|
||||
var find = 1;
|
||||
var getMotif = new RegExp('%\{(([A-Za-z0-9]+)(\:(-?[0-9])+)?(\:(-?[0-9])+)?)\}');
|
||||
var getMotif = new RegExp('%\{(([A-Za-z0-9]+)(\:(-?[0-9])+)?(\:(-?[0-9])+)?([\!\_\~\%]+)?)\}');
|
||||
var ch = null;
|
||||
while (find) {
|
||||
ch = getMotif.exec(format);
|
||||
|
|
Loading…
Reference in a new issue