summaryrefslogtreecommitdiff
path: root/FS/FS/Mason.pm
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2015-07-11 23:39:17 -0700
committerIvan Kohler <ivan@freeside.biz>2015-07-11 23:39:17 -0700
commit05290277c18bd1465fd772da9e23e54dab310115 (patch)
tree069e19cfad14b6f62999af1f86868fcd9365b5b6 /FS/FS/Mason.pm
parent81d75b9e573b0f814ee279b05dadbfb79050626a (diff)
include is deprecated, but not ready to enable this warning after all
Diffstat (limited to 'FS/FS/Mason.pm')
-rw-r--r--FS/FS/Mason.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/Mason.pm b/FS/FS/Mason.pm
index d1535b5..3d577f6 100644
--- a/FS/FS/Mason.pm
+++ b/FS/FS/Mason.pm
@@ -508,8 +508,8 @@ if ( -e $addl_handler_use_file ) {
};
sub include {
- use vars qw($m @CARP_NOT);
- warn 'include deprecated; use an HTML::Mason <& &> style include (or $m->scomp) at '. $m->callers(1)->path. "\n";
+ use vars qw($m);
+ #warn 'include deprecated; use an HTML::Mason <& &> style include (or $m->scomp) at '. $m->callers(0)->path. "\n";
$m->scomp(@_);
}