Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: [Chas-a] Duplicate_Check Mozilla error

Quote Reply
Re: [Chas-a] Duplicate_Check Mozilla error In reply to
No problem =)

In Duplicate_Check.pm, find;

Code:
if ($chk_dup) {
$error_show = "The URL you entered already seems to be in our database, either live, or awaiting validation!";
print Links::SiteHTML::display('error', { error => $error_show });
exit;
}

..and change to;

Code:
if ($chk_dup) {
print $IN->header();
$error_show = "The URL you entered already seems to be in our database, either live, or awaiting validation!";
print Links::SiteHTML::display('error', { error => $error_show });
exit;
}

Hope that helps.

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 Duplicate_Check Mozilla error Chas-a 3668 Sep 7, 2005, 7:21 AM
Thread Re: [Chas-a] Duplicate_Check Mozilla error
Andy 3559 Sep 8, 2005, 8:40 AM
Thread Re: [Andy] Duplicate_Check Mozilla error
Chas-a 3566 Sep 8, 2005, 8:56 AM
Thread Re: [Chas-a] Duplicate_Check Mozilla error
Andy 3546 Sep 8, 2005, 8:59 AM
Post Re: [Andy] Duplicate_Check Mozilla error
Chas-a 3538 Sep 8, 2005, 9:51 AM