#!/usr/local/bin/perl
# ==================================================================
# Links SQL - enhanced directory management system
#
#   Website  : http://gossamer-threads.com/
#   Support  : http://gossamer-threads.com/scripts/support/
#   CVS Info : 087,070,083,092,087 
#   Revision : $Id: fave.cgi,v 1.25 2001/11/28 16:00:14 paul Exp $
#
# Copyright (c) 2001 Gossamer Threads Inc.  All Rights Reserved.
# Redistribution in part or in whole strictly prohibited. Please
# see LICENSE file for full details.
# ==================================================================

    use strict;
    use lib '/home/hsasia/public_html/cgi-bin/admin';
    use Links qw/$CFG/;

    Links::init('/home/hsasia/public_html/cgi-bin/admin'); 

    use Plugins::MyLinks_SQL::Favorites;
    
    local $SIG{__DIE__} = \&Links::fatal;
    if (Links->check_request()) {
        GT::Plugins->dispatch ($CFG->{admin_root_path} . '/Plugins', 'user_add_fave', \&Plugins::MyLinks_SQL::Favorites::handle);
    }
