Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dac412ca authored by George Burgess IV's avatar George Burgess IV Committed by android-build-merger
Browse files

Merge "warn.py: have URLs open in new tabs" am: 7ffb8c8f am: 2f6f02d8 am: 763e5921

am: ce662c40

Change-Id: I99c6b8dab026053c821ea66ac561351c852edcff
parents c50d77d9 ce662c40
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -2463,10 +2463,11 @@ scripts_for_warning_groups = """
    if (FlagURL == "") return line;
    if (FlagSeparator == "") {
      return line.replace(ParseLinePattern,
        "<a href='" + FlagURL + "/$1'>$1</a>:$2:$3");
        "<a target='_blank' href='" + FlagURL + "/$1'>$1</a>:$2:$3");
    }
    return line.replace(ParseLinePattern,
      "<a href='" + FlagURL + "/$1" + FlagSeparator + "$2'>$1:$2</a>:$3");
      "<a target='_blank' href='" + FlagURL + "/$1" + FlagSeparator +
        "$2'>$1:$2</a>:$3");
  }
  function createArrayOfDictionaries(n) {
    var result = [];