This commit is contained in:
Laurent Destailleur 2020-03-11 17:56:47 +01:00
parent 5adec1fe32
commit 58643d2dad

View File

@ -77,12 +77,16 @@ if (! $resql) {
}
while ($obj = $dbjoomla->fetch_object($resql)) {
$i = 0;
if ($obj) {
$i++;
$id = $obj->id;
$title = $obj->title;
$alias = $obj->alias;
$description = dol_string_nohtmltag($obj->introtext);
$hmtltext = $obj->fulltext;
print $i.' '.$id.' '.$title."\n";
}
}