From: Jason S. <jsw...@ya...> - 2003-05-05 02:36:53
|
I modified constants.php to allow for no errors with error_reporting(E_ALL); in the actual define statement, the constant name needs to be a string in order to not receive a notification. Constants.php: <?php //request contant(s) define('_ACTION', 'action'); define('_VIEW', 'view'); //session constant(s) define('_CONTROLLER', '_controller'); define('_ERRORS', '_errors'); define('_FORM', '_form'); //mappings constant(s) define('_ACTION_FORMS', '_actionForms'); define('_ACTION_MAPPINGS', '_actionMappings'); define('_TYPE', '_type'); define('_NAME', '_name'); define('_INPUT', '_input'); define('_VALIDATE', '_validate'); define('_ACTION_FORWARDS', '_actionForwards'); define('_PATH', '_path'); define('_REDIRECT', '_redirect'); //options constant(s) define('_CACHE', '_cache'); define('_ERROR_REPORTING', '_errorReporting'); define('_ERROR_HANDLER', '_errorHandler'); ?> __________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo. http://search.yahoo.com |