]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
debugging code to find passed-in objects in munge_password
authorEvan Prodromou <evan@status.net>
Sun, 10 Jan 2010 20:07:49 +0000 (12:07 -0800)
committerEvan Prodromou <evan@status.net>
Sun, 10 Jan 2010 20:07:49 +0000 (12:07 -0800)
lib/util.php

index fdcc87677b08011829c0b77c62e2cf44e8f6244d..00d1ab55749e5494e843313228fff9d2721242a2 100644 (file)
@@ -62,7 +62,7 @@ function common_init_language()
     // gettext will still select the right language.
     $language = common_language();
     $locale_set = common_init_locale($language);
-    
+
     setlocale(LC_CTYPE, 'C');
     // So we do not have to make people install the gettext locales
     $path = common_config('site','locale_path');
@@ -119,6 +119,11 @@ function common_language()
 
 function common_munge_password($password, $id)
 {
+    if (is_object($id) || is_object($password)) {
+        $e = new Exception();
+        common_log(LOG_ERR, __METHOD__ . ' object in param to common_munge_password ' .
+                   str_replace("\n", " ", $e->getTraceAsString()));
+    }
     return md5($password . $id);
 }