From: <sk...@us...> - 2008-10-23 14:21:36
|
Revision: 1418 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=1418&view=rev Author: sknappe Date: 2008-10-23 14:21:31 +0000 (Thu, 23 Oct 2008) Log Message: ----------- bugfix Modified Paths: -------------- trunk/src/dbpedia-navigator/helper_functions.php Modified: trunk/src/dbpedia-navigator/helper_functions.php =================================================================== --- trunk/src/dbpedia-navigator/helper_functions.php 2008-10-23 14:17:31 UTC (rev 1417) +++ trunk/src/dbpedia-navigator/helper_functions.php 2008-10-23 14:21:31 UTC (rev 1418) @@ -262,7 +262,7 @@ function get_triple_table($triples,$subjecttriples) { - if ((is_array($triples)&&count($triples)>0)||(is_array($subjecttriples)&&count($subjecttriples)>0){ + if ((is_array($triples)&&count($triples)>0)||(is_array($subjecttriples)&&count($subjecttriples)>0)){ $table = '<table border="0" style="width:100%;overflow:hidden"><tr><td><b>Predicate</b></td><td><b>Object/Subject</b></td></tr>'; $i=1; if (is_array($triples)&&count($triples)>0) foreach($triples as $predicate=>$object) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |