lib/ar/html/zen.php 1 location
|
@@ 104-107 (lines=4) @@
|
101 |
|
$class_number = array(); |
102 |
|
$start = ord('0'); |
103 |
|
$end = ord('9'); |
104 |
|
for ($i = $start; $i <= $end; $i++) { |
105 |
|
$class_ident_next[chr($i)] = chr($i); |
106 |
|
$class_number[chr($i)] = chr($i); |
107 |
|
} |
108 |
|
$this->class_number = $class_number; |
109 |
|
$this->class_ident = array_merge($this->class_ident, $class_ident_next); |
110 |
|
// Whitespace |
lib/modules/mod_htmlparser.php 1 location
|
@@ 54-57 (lines=4) @@
|
51 |
|
$class_number = array(); |
52 |
|
$start = ord('0'); |
53 |
|
$end = ord('9'); |
54 |
|
for ($i = $start; $i <= $end; $i++) { |
55 |
|
$class_ident_next[chr($i)] = chr($i); |
56 |
|
$class_number[chr($i)] = chr($i); |
57 |
|
} |
58 |
|
$scanner['class_ident_next'] = $class_ident_next; |
59 |
|
$scanner['class_number'] = $class_number; |
60 |
|
|