Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [index] Override the isValidated in the Detailed - how?

Quote Reply
Re: [index] Override the isValidated in the Detailed - how? In reply to
Hi,

Mmm.. I just tried a couple of things (in /admin/GT/User/Page.cgi, generate_detailed_page() ), but couldn't get it to work. The error ( i.e detailed page not found) is related to:

Code:
if (!$link) {
print $IN->header();
print Links::SiteHTML::display('error', { error => Links::language('PAGE_INVALIDDETAIL', $page) });
return;
}

...however, this is grabbed from:

Code:
my $cat_id = $IN->param('CategoryID');
if ($cat_id and $DB->table('CatLinks')->count({ LinkID => $id, CategoryID => $cat_id })) {
$link = $DB->table(qw/Links CatLinks Category/)->select({ LinkID => $id, CategoryID => $cat_id })->fetchrow_hashref;
}
else {
$link = $DB->table('Links')->get($id, 'HASH');
}

I'm afraid I can't see where isValidated => Yes is defined - so can't really offer a solution - sorry :(

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Subject Author Views Date
Thread Override the isValidated in the Detailed - how? index 3251 Apr 18, 2007, 5:44 AM
Thread Re: [index] Override the isValidated in the Detailed - how?
Andy 3221 Apr 18, 2007, 6:58 AM
Thread Re: [Andy] Override the isValidated in the Detailed - how?
index 3206 Apr 18, 2007, 7:02 AM
Thread Re: [index] Override the isValidated in the Detailed - how?
Andy 3216 Apr 18, 2007, 7:15 AM
Post Re: [Andy] Override the isValidated in the Detailed - how?
index 3206 Apr 18, 2007, 5:34 PM
Thread Re: [Andy] Override the isValidated in the Detailed - how?
eupos 3179 Apr 18, 2007, 11:49 PM
Post Re: [eupos] Override the isValidated in the Detailed - how?
Andy 3172 Apr 18, 2007, 11:56 PM