diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-04-04 17:30:42 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-04-04 17:30:42 -0700 |
commit | 23699764d0d8436b50f5cf88f798c552969714eb (patch) | |
tree | b8ea6804f70f72a381350c5365a1e7bab11b3725 | |
parent | 98652f79fc4fff916a46bc94d6301b24bcd13df3 (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 b5b1071c1..248f14a24 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> |