aboutsummaryrefslogtreecommitdiff
path: root/mail/squirrelmail
diff options
context:
space:
mode:
authorAdam Weinberger <adamw@FreeBSD.org>2012-09-09 16:41:29 +0000
committerAdam Weinberger <adamw@FreeBSD.org>2012-09-09 16:41:29 +0000
commit823896d5e84c45864a93b52013f0a4bb2d050b51 (patch)
treee414db5bd8cb8017a69415a1b930c012fb75d41a /mail/squirrelmail
parente58ca03ab3bbcb89f3a4b3121e2a11e2b2d4c0f2 (diff)
downloadports-823896d5e84c45864a93b52013f0a4bb2d050b51.tar.gz
ports-823896d5e84c45864a93b52013f0a4bb2d050b51.zip
Notes
Diffstat (limited to 'mail/squirrelmail')
-rw-r--r--mail/squirrelmail/files/patch-plugins-mail_fetch-functions.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/mail/squirrelmail/files/patch-plugins-mail_fetch-functions.php b/mail/squirrelmail/files/patch-plugins-mail_fetch-functions.php
new file mode 100644
index 000000000000..bb1d04ce9e7d
--- /dev/null
+++ b/mail/squirrelmail/files/patch-plugins-mail_fetch-functions.php
@@ -0,0 +1,33 @@
+--- plugins/mail_fetch/functions.php.old 2012-09-08 17:58:39.000000000 -0400
++++ plugins/mail_fetch/functions.php 2012-09-08 18:01:06.000000000 -0400
+@@ -92,15 +92,22 @@
+ return '';
+ }
+
+-function hex2bin( $data ) {
+- /* Original code by josh@superfork.com */
++/**
++ * hex2bin - convert a hexadecimal string into binary
++ * Part of php54, so don't try to clobber it
++ */
++if ( ! function_exists('hex2bin') ) {
++ function hex2bin( $data ) {
+
+- $len = strlen($data);
+- $newdata = '';
+- for( $i=0; $i < $len; $i += 2 ) {
+- $newdata .= pack( "C", hexdec( substr( $data, $i, 2) ) );
+- }
+- return $newdata;
++ /* Original code by josh@superfork.com */
++
++ $len = strlen($data);
++ $newdata = '';
++ for( $i=0; $i < $len; $i += 2 ) {
++ $newdata .= pack( "C", hexdec( substr( $data, $i, 2) ) );
++ }
++ return $newdata;
++ }
+ }
+
+ function mf_keyED( $txt ) {