View | Details | Raw Unified | Return to bug 27747
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-9 / +11 lines)
Lines 1429-1446 Link Here
1429
                    var ch;
1429
                    var ch;
1430
1430
1431
                    if (stream.match("<<")) {
1431
                    if (stream.match("<<")) {
1432
                        while ((ch = stream.next()) != null)
1432
                        while ((ch = stream.next()) != null) {
1433
                        if (ch == ">" && stream.next() == ">") {
1433
                            if (ch == ">" && stream.next() == ">") {
1434
                            stream.eat(">");
1434
                                stream.eat(">");
1435
                            return "sqlParams";
1435
                                return "sqlParams";
1436
                            }
1436
                        }
1437
                        }
1437
                    }
1438
                    }
1438
1439
1439
                    if (stream.match("[[")) {
1440
                    if (stream.match("[[")) {
1440
                        while ((ch = stream.next()) != null)
1441
                        while ((ch = stream.next()) != null) {
1441
                            if (ch == "]" && stream.next() == "]") break;
1442
                            if (ch == "]" && stream.next() == "]") {
1442
                        stream.eat("]");
1443
                                stream.eat("]");
1443
                        return "columnPlaceholder";
1444
                                return "columnPlaceholder";
1445
                            }
1446
                        }
1444
                    }
1447
                    }
1445
1448
1446
                    else if (stream.next() != null) {
1449
                    else if (stream.next() != null) {
1447
- 

Return to bug 27747