From cf0bb27b32d827f18a8f8072c873dfeb23c7ebca Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Wed, 15 Oct 2008 16:21:05 +0000 Subject: phplint cleanup --- it_xml.class | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'it_xml.class') diff --git a/it_xml.class b/it_xml.class index 381d4eb..5dd4ead 100644 --- a/it_xml.class +++ b/it_xml.class @@ -111,7 +111,7 @@ function from_xml($xmldata, $p) return empty($this->error); } -function consume($p) +function consume(/* $p */) { return false; } @@ -148,7 +148,7 @@ function _make_identifier($name) return $this->_p['lowercase'] ? strtolower($id) : $id; } -function start_element($parser, $name, $attrs) +function start_element($dummy_parser, $name, $attrs) { $name = $this->_p['prefix'] . $this->_make_identifier($name); @@ -170,7 +170,7 @@ function start_element($parser, $name, $attrs) } } -function end_element($parser, $name) +function end_element($dummy_parser, $name) { $name = $this->_make_identifier($name); @@ -197,7 +197,7 @@ function end_element($parser, $name) $this->_root = $node; } -function character_data($parser, $cdata) +function character_data($dummy_parser, $cdata) { if (isset($this->_stack[0]->val) || (trim($cdata) !== "")) $this->_stack[0]->val .= $cdata; -- cgit v1.2.3