diff options
author | friendica <info@friendica.com> | 2012-03-28 20:50:09 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-28 20:50:09 -0700 |
commit | 4e4f7ac79fe5f75ee5595c3a6eb7d3e445c8c6e2 (patch) | |
tree | ebb3bc0f22f55ea2bcea023b32d0e57200c9293a /include/email.php | |
parent | a946b7cea3e589fc08ca25d84e5d660efa5b3de6 (diff) | |
download | volse-hubzilla-4e4f7ac79fe5f75ee5595c3a6eb7d3e445c8c6e2.tar.gz volse-hubzilla-4e4f7ac79fe5f75ee5595c3a6eb7d3e445c8c6e2.tar.bz2 volse-hubzilla-4e4f7ac79fe5f75ee5595c3a6eb7d3e445c8c6e2.zip |
some reported warnings cleaned up
Diffstat (limited to 'include/email.php')
-rwxr-xr-x | include/email.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/email.php b/include/email.php index bd44cb763..b43ae0dc1 100755 --- a/include/email.php +++ b/include/email.php @@ -250,7 +250,7 @@ function email_header_encode($in_str, $charset) { // remove trailing spacer and // add start and end delimiters - $spacer = preg_quote($spacer); + $spacer = preg_quote($spacer,'/'); $out_str = preg_replace("/" . $spacer . "$/", "", $out_str); $out_str = $start . $out_str . $end; } |