equal
deleted
inserted
replaced
133 /** |
133 /** |
134 * Get lines from either the old or new text |
134 * Get lines from either the old or new text |
135 * |
135 * |
136 * @access private |
136 * @access private |
137 * |
137 * |
138 * @param array &$text_lines Either $from_lines or $to_lines |
138 * @param array $text_lines Either $from_lines or $to_lines (passed by reference). |
139 * @param int &$line_no Current line number |
139 * @param int $line_no Current line number (passed by reference). |
140 * @param int $end Optional end line, when we want to chop more |
140 * @param int $end Optional end line, when we want to chop more |
141 * than one line. |
141 * than one line. |
142 * |
142 * |
143 * @return array The chopped lines |
143 * @return array The chopped lines |
144 */ |
144 */ |
145 function _getLines(&$text_lines, &$line_no, $end = false) |
145 function _getLines(&$text_lines, &$line_no, $end = false) |
146 { |
146 { |