summaryrefslogtreecommitdiff
path: root/plugins/OStatus/lib/safemath_biginteger.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-03-22 12:37:45 -0700
committerBrion Vibber <brion@pobox.com>2010-03-22 12:37:45 -0700
commit26f49de0dd5673584e734152d2d3329b90eb6978 (patch)
tree2ba00544c77cc3bfe0cafb4fa8fe60ce73d31d79 /plugins/OStatus/lib/safemath_biginteger.php
parentc85228eadc60b50ed6e7c9cba596c3e66f5214b2 (diff)
parent27bfd1211d64298ee3c3b2d82d7b38ca1e1167ad (diff)
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into 0.9.x
Conflicts: lib/attachmentlist.php
Diffstat (limited to 'plugins/OStatus/lib/safemath_biginteger.php')
-rw-r--r--plugins/OStatus/lib/safemath_biginteger.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/OStatus/lib/safemath_biginteger.php b/plugins/OStatus/lib/safemath_biginteger.php
new file mode 100644
index 000000000..c05e24d1e
--- /dev/null
+++ b/plugins/OStatus/lib/safemath_biginteger.php
@@ -0,0 +1,20 @@
+<?php
+
+require_once 'Math/BigInteger.php';
+
+/**
+ * Crypt_RSA stores a Math_BigInteger with value 0, which triggers a bug
+ * in Math_BigInteger's wakeup function which spews notices to log or output.
+ * This wrapper replaces it with a version that survives serialization.
+ */
+class SafeMath_BigInteger extends Math_BigInteger
+{
+ function __wakeup()
+ {
+ if ($this->hex == '') {
+ $this->hex = '0';
+ }
+ parent::__wakeup();
+ }
+}
+