Thanks for the quick reply; I noticed the special characters and I have now removed them - but still no look
I guess it just doesn’t work for me then .... :-(
But thanks anyway ...
/**————————————————————
/** Show links
/**————————————————————*/
function show_links()
{
global $IN, $FNS, $LANG;
//—————————————————————-
// ‘paginate_edit_object’ hook.
// - Rewrite the show_links function in the core file and change variables
// ADDED BY HCCDevelopment 08/19/08 Brian Greenacre
//
if ($EXT->active_hook(‘paginate_edit_object’) === TRUE)
{
$edata = $EXT->universal_call_extension(‘paginate_edit_object’, $this);
if ($EXT->end_script === TRUE) return;
}
//
//—————————————————————-
/**————————————————————
/** Do we have links to show?
/**————————————————————*/
// If our item count or per-page total is zero there is no need to continue
if ($this->total_count == 0 || $this->per_page == 0)
{
return;
}