<?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/
//
// --------------------------------------------------------------------------
if(!defined('SITE_PATH') || !IsAdmin()) die('Access denied');
$pg = 'setup';
function Members_List_SetupValidate(){
$err_msg = '';
if(!$_POST['DISP_ROWS'] || !ctype_digit($_POST['DISP_ROWS'])) $err_msg = 'Members per page amount must be numeric';
return $err_msg;
}
?>