From: Gunnar A. G. <ggr...@cs...> - 2006-04-01 18:43:55
|
> I tried changing private variables to "var", public functions to > just "function" > etc., but I still get a error in SparqlEngine.php from this line: > $element = $it->current()->getStatement() In PHP4 this had to be done in two steps: $element1 = $it->current(); $element=$element1->getStatement() This might not solve any of your problems though :) I dont know anything about the sparql engine. -- Gunnar Aastrand Grimnes ggr...@cs... http://www.dfki.uni-kl.de/~grimnes |