aboutsummaryrefslogtreecommitdiffstats
path: root/include/email.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-28 20:50:09 -0700
committerfriendica <info@friendica.com>2012-03-28 20:50:09 -0700
commit4e4f7ac79fe5f75ee5595c3a6eb7d3e445c8c6e2 (patch)
treeebb3bc0f22f55ea2bcea023b32d0e57200c9293a /include/email.php
parenta946b7cea3e589fc08ca25d84e5d660efa5b3de6 (diff)
downloadvolse-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-xinclude/email.php2
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;
}