$propbag->add('description', PLUGIN_ENTRYLINKS_BLAHBLAH);
$propbag->add('stackable', false);
$propbag->add('author', 'Garvin Hicking');
- $propbag->add('version', '1.0');
+ $propbag->add('version', '1.01');
$propbag->add('requirements', array(
'serendipity' => '0.8',
'smarty' => '2.6.7',
if (is_array($references)) {
$links = '<ul style="margin: 5px; padding: 10px; text-align: left">';
foreach($references AS $key => $row) {
+ if (empty($row['name']) || empty($row['link'])) {
+ continue;
+ }
$count = '';
if (isset($counter[$row['link']])) {
$count = '<br /><div style="text-align: right; margin: 0px">[' . $counter[$row['link']] . ']</div>';
}
/* vim: set sts=4 ts=4 expandtab : */
-?>