Bug 27747: (QA follow-up) Make code consistent and add explicit brackets
authorNick Clemens <nick@bywatersolutions.com>
Fri, 23 Jul 2021 13:05:41 +0000 (13:05 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 26 Jul 2021 10:46:32 +0000 (12:46 +0200)
The while statements were including the next statement, I add brackets to make it
more obvious

Also the highlighting was applying to [[borrowernumber|Borrow number]
I removed the break to match code above and only highlight when syntax complete and correct

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt

index 11cfc36..4afd8b7 100644 (file)
                     var ch;
 
                     if (stream.match("<<")) {
-                        while ((ch = stream.next()) != null)
-                        if (ch == ">" && stream.next() == ">") {
-                            stream.eat(">");
-                            return "sqlParams";
+                        while ((ch = stream.next()) != null) {
+                            if (ch == ">" && stream.next() == ">") {
+                                stream.eat(">");
+                                return "sqlParams";
+                            }
                         }
                     }
 
                     if (stream.match("[[")) {
-                        while ((ch = stream.next()) != null)
-                            if (ch == "]" && stream.next() == "]") break;
-                        stream.eat("]");
-                        return "columnPlaceholder";
+                        while ((ch = stream.next()) != null) {
+                            if (ch == "]" && stream.next() == "]") {
+                                stream.eat("]");
+                                return "columnPlaceholder";
+                            }
+                        }
                     }
 
                     else if (stream.next() != null) {