[development] Threading problems?
Derek Wright
drupal at dwwright.net
Fri Sep 26 08:05:42 UTC 2008
On Sep 25, 2008, at 10:28 PM, Dan Robinson wrote:
> $filename = md5($conf['myapp_secret_salt'] +
> $form_state['values']['Qualifyers']['Email'] + time());
...
> What am I doing wrong?
You're using arithmetic on your strings, not concatenation. Try this:
$filename = md5($conf['myapp_secret_salt'] . $form_state['values']
['Qualifyers']['Email'] . time());
I didn't completely audit the rest of your description, but that
seems like the heart of the problem.
Cheers,
-Derek (dww)
More information about the development
mailing list