* @subpackage filters
*/
-@include_once (SM_PATH . 'plugins/filters/config.php');
+if (file_exists(SM_PATH . 'plugins/filters/config.php'))
+ include_once (SM_PATH . 'plugins/filters/config.php');
/**
* Init Hooks
require_once(SM_PATH . 'plugins/filters/filters.php');
if (!file_exists(SM_PATH . 'plugins/filters/config.php')) return;
-@include_once (SM_PATH . 'plugins/filters/config.php');
+include_once (SM_PATH . 'plugins/filters/config.php');
global $AllowSpamFilters;
* @access private
*/
function squirrelmail_plugin_init_filters() {
- @include_once(SM_PATH . 'plugins/filters/filters.php');
+ include_once(SM_PATH . 'plugins/filters/filters.php');
filters_init_hooks ();
}
* @access private
*/
function filters_optpage_register_block_hook() {
- @include_once(SM_PATH . 'plugins/filters/filters.php');
+ include_once(SM_PATH . 'plugins/filters/filters.php');
filters_optpage_register_block ();
}
* @access private
*/
function start_filters_hook($args) {
- @include_once(SM_PATH . 'plugins/filters/filters.php');
+ include_once(SM_PATH . 'plugins/filters/filters.php');
start_filters ();
}
* @access private
*/
function update_for_folder_hook() {
- @include_once(SM_PATH . 'plugins/filters/filters.php');
+ include_once(SM_PATH . 'plugins/filters/filters.php');
update_for_folder ();
}