#!/usr/bin/perl # ================================================================== # Gossamer Links - enhanced directory management system # # Website : http://gossamer-threads.com/ # Support : http://gossamer-threads.com/scripts/support/ # CVS Info : 087,068,085,094,083 # Revision : $Id: rate.cgi,v 1.30 2005/03/22 08:18:05 jagerman 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/htdocs/users/mehn2/mehn2/horror.com/scripts/links/admin'; use Links qw/$PLG/; use Links::User::Rate; local $SIG{__DIE__} = \&Links::fatal; Links::init('/home/htdocs/users/mehn2/mehn2/horror.com/scripts/links/admin'); Links::init_user(); if ($PLG->dispatch('check_request', \&Links::check_request)) { $PLG->dispatch('handle_rate', \&Links::User::Rate::handle); }