Assertion added to crypto helper (CAPTCHA might still be broken, why?)
[shipsimu.git] / inc / classes / main / crypto / class_CryptoHelper.php
index 2ebafd8ed9c9dfdeffcda10ef4473645e620ccbc..1ccdaae901b0712c8644e6001b8de53598cd050d 100644 (file)
@@ -241,6 +241,11 @@ class CryptoHelper extends BaseFrameworkSystem implements Cryptable {
 
                // Get the real string out
                $strArray = explode("|", $garbageString);
+
+               // Does the element count match?
+               assert(count($strArray) == 3);
+
+               // Decode the string
                $str = base64_decode($strArray[1]);
 
                // Trim trailing nulls away