<?php
// --------------------------------------------------------------------------
//
// Esvon Classifieds v.4.0
// Copyright(C), Esvon LTD, 2001-2010, All Rights Reserved.
// E-mail: hide@address.com
//
// All forms of reproduction, including, but not limited to, internet posting,
// printing, e-mailing, faxing and recording are strictly prohibited.
// One license required per site running Esvon Classifieds.
// To obtain a license for using Esvon Classifieds, please register at
// http://www.esvon.com/pg/products/p_classifieds/
//
// --------------------------------------------------------------------------
function Cron_General_Event($event,&$args){
$HW_MOD = 'Cron_General';
switch($event){
case 'onCronExecute':
include SITE_PATH.'modules/'.$HW_MOD.'/cron.php';
Cron_General_Run($args);
break;
}
}
?>