I just installed j51_news module on the Emani template.
After setting up the category and the first articel I got this output of the module:
Sachbearbeiter in Teilzeit m/w/d
a1 is: '1','2','3'
Stellenangebot Sachbearbeiter in Teilzeit m/w/d in Teilzeit 20 Stunden/Woche.
I checked the default.php of the mod_j51news module and found this code starting at line 205:
<?php if ($show_text) : ?>
<<?php echo $text_tag; ?> class="newstext j51news-caption"><?php
$allowedtags = explode(',', $allowed_tags);
$a1 = array("1","2","3");
echo "a1 is: '".implode("','",$a1)."'<br>";
$introb = strip_tags($item->introtext);
$intro = JHtml::_('string.truncate', $introb, $length_text);
echo $intro; ?></<?php echo $text_tag; ?>>
<?php endif; ?>
The "echo" on line 209 brings out the result seen ubove => "a1 is: '1','2','3'"
Maybe you should comment out this for a future version?
I deleted the line and saved the default.php as overwrite to the template/html/mod_j51news folder..... this works fine.
Regards
Oliver