Code Duplication    Length = 3-3 lines in 2 locations

includes/libraries/protect/AntiXSS/UTF8.php 2 locations

@@ 6962-6964 (lines=3) @@
6959
          if ($ordC0 >= 248) {
6960
            $ordC4 = ord($c[4]);
6961
6962
            if ($ordC0 <= 251) {
6963
              $ord = ($ordC0 - 248) * 16777216 + ($ordC1 - 128) * 262144 + ($ordC2 - 128) * 4096 + ($ordC3 - 128) * 64 + ($ordC4 - 128);
6964
            }
6965
6966
            if ($ordC0 >= 252) {
6967
              $ordC5 = ord($c[5]);
@@ 6969-6971 (lines=3) @@
6966
            if ($ordC0 >= 252) {
6967
              $ordC5 = ord($c[5]);
6968
6969
              if ($ordC0 <= 253) {
6970
                $ord = ($ordC0 - 252) * 1073741824 + ($ordC1 - 128) * 16777216 + ($ordC2 - 128) * 262144 + ($ordC3 - 128) * 4096 + ($ordC4 - 128) * 64 + ($ordC5 - 128);
6971
              }
6972
            }
6973
          }
6974
        }