diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-04-04 17:30:44 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-04-04 17:30:44 -0700 |
commit | b04dfa7c78a316b6b00afa17903424d71ba18cc4 (patch) | |
tree | bee5729b2d73322c55572157804bd8ae3426d95a | |
parent | 5b7eefb9f9f6f0fb6bcb6ef3767cbbabd638c29f (diff) |
fix db profling on pages that put javascript after </html>, like edit/part_event.html. huh. RT#27396
-rw-r--r-- | httemplate/autohandler | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/autohandler b/httemplate/autohandler index c326e3e18..b27819381 100644 --- a/httemplate/autohandler +++ b/httemplate/autohandler @@ -41,7 +41,7 @@ if ( UNIVERSAL::can(dbh, 'sprintProfile') ) { dbh->{'private_profile'} = {}; - s/(<\/BODY>[\s\n]*<\/HTML>[\s\n]*)$/$profile$1/i; + s/(<\/BODY>[\s\n]*<\/HTML>[\s\n]*)/$profile$1/i; } </%filter> |